Merge pull request 'oliver-patch-1' (#1) from oliver-patch-1 into main
Reviewed-on: #1
This commit is contained in:
commit
13a875c4f7
3 changed files with 5 additions and 139 deletions
58
.github/workflows/macos_action_test.yml
vendored
58
.github/workflows/macos_action_test.yml
vendored
|
@ -1,58 +0,0 @@
|
|||
name: Action test on MacOS
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: "0 4 * * MON-FRI" # Runs at 04:00 UTC
|
||||
push:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
macos-minimal:
|
||||
runs-on: macos-latest
|
||||
if: github.event_name != 'push'
|
||||
steps:
|
||||
- uses: actions/checkout@v2.3.4
|
||||
- run: date > reports/macos_report_minimal.txt
|
||||
- uses: GuillaumeFalourd/git-commit-push@main
|
||||
|
||||
macos-full:
|
||||
runs-on: macos-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2.3.4
|
||||
- run: date > reports/macos_report_full.txt
|
||||
- uses: GuillaumeFalourd/git-commit-push@main
|
||||
with:
|
||||
email: ${{ github.actor }}[bot]@users.noreply.github.com
|
||||
name: ${{ github.actor }}
|
||||
commit_message: macos full workflow
|
||||
target_branch: macos
|
||||
files: reports/macos_report_full.txt
|
||||
remote_repository: origin
|
||||
access_token: ${{ github.token }}
|
||||
force: true
|
||||
empty: true
|
||||
tags: true
|
||||
|
||||
macos-full-remote:
|
||||
runs-on: macos-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2.3.4
|
||||
- run: date > reports/macos_report_full_remote.txt
|
||||
- uses: GuillaumeFalourd/git-commit-push@main
|
||||
with:
|
||||
email: ${{ github.actor }}[bot]@users.noreply.github.com
|
||||
name: ${{ github.actor }}
|
||||
commit_message: macos full remote workflow
|
||||
target_branch: macos
|
||||
files: reports/macos_report_full_remote.txt
|
||||
remote_repository: https://github.com/GuillaumeFalourd/poc-github-actions
|
||||
access_token: ${{ secrets.ACCESS_TOKEN }}
|
||||
force: true
|
||||
empty: true
|
||||
tags: true
|
||||
|
||||
macos-nochanges:
|
||||
runs-on: macos-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2.3.4
|
||||
- uses: GuillaumeFalourd/git-commit-push@main
|
28
.github/workflows/ubuntu_action_test.yml
vendored
28
.github/workflows/ubuntu_action_test.yml
vendored
|
@ -11,19 +11,19 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
if: github.event_name != 'push'
|
||||
steps:
|
||||
- uses: actions/checkout@v2.3.4
|
||||
- uses: actions/checkout@v4
|
||||
- run: date > reports/ubuntu_report_minimal.txt
|
||||
- uses: GuillaumeFalourd/git-commit-push@main
|
||||
- uses: https://w9r.dev/w9r.dev/action-git-commit-push@main
|
||||
|
||||
ubuntu-full:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2.3.4
|
||||
- run: date > reports/ubuntu_report_full.txt
|
||||
- uses: GuillaumeFalourd/git-commit-push@main
|
||||
- uses: https://w9r.dev/w9r.dev/action-git-commit-push@main
|
||||
with:
|
||||
email: ${{ github.actor }}[bot]@users.noreply.github.com
|
||||
name: ${{ github.actor }}
|
||||
email: releasebot@w9r.dev
|
||||
name: ReleaseBot
|
||||
commit_message: ubuntu full workflow
|
||||
target_branch: ubuntu
|
||||
files: reports/ubuntu_report_full.txt
|
||||
|
@ -33,24 +33,6 @@ jobs:
|
|||
empty: true
|
||||
tags: true
|
||||
|
||||
ubuntu-full-remote:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2.3.4
|
||||
- run: date > reports/ubuntu_report_full_remote.txt
|
||||
- uses: GuillaumeFalourd/git-commit-push@main
|
||||
with:
|
||||
email: ${{ github.actor }}[bot]@users.noreply.github.com
|
||||
name: ${{ github.actor }}
|
||||
commit_message: ubuntu full remote workflow
|
||||
target_branch: ubuntu
|
||||
files: reports/ubuntu_report_full_remote.txt
|
||||
remote_repository: https://github.com/GuillaumeFalourd/poc-github-actions
|
||||
access_token: ${{ secrets.ACCESS_TOKEN }}
|
||||
force: true
|
||||
empty: true
|
||||
tags: true
|
||||
|
||||
ubuntu-nochanges:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
|
58
.github/workflows/windows_action_test.yml
vendored
58
.github/workflows/windows_action_test.yml
vendored
|
@ -1,58 +0,0 @@
|
|||
name: Action test on Windows
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: "0 6 * * MON-FRI" # Runs at 06:00 UTC
|
||||
push:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
windows-minimal:
|
||||
runs-on: windows-latest
|
||||
if: github.event_name != 'push'
|
||||
steps:
|
||||
- uses: actions/checkout@v2.3.4
|
||||
- run: date > reports/windows_report_minimal.txt
|
||||
- uses: GuillaumeFalourd/git-commit-push@main
|
||||
|
||||
windows-full:
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2.3.4
|
||||
- run: date > reports/windows_report_full.txt
|
||||
- uses: GuillaumeFalourd/git-commit-push@main
|
||||
with:
|
||||
email: ${{ github.actor }}[bot]@users.noreply.github.com
|
||||
name: ${{ github.actor }}
|
||||
commit_message: windows full workflow
|
||||
target_branch: windows
|
||||
files: reports/windows_report_full.txt
|
||||
remote_repository: origin
|
||||
access_token: ${{ github.token }}
|
||||
force: true
|
||||
empty: true
|
||||
tags: true
|
||||
|
||||
windows-full-remote:
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2.3.4
|
||||
- run: date > reports/windows_report_full_remote.txt
|
||||
- uses: GuillaumeFalourd/git-commit-push@main
|
||||
with:
|
||||
email: ${{ github.actor }}[bot]@users.noreply.github.com
|
||||
name: ${{ github.actor }}
|
||||
commit_message: windows full remote workflow
|
||||
target_branch: windows
|
||||
files: reports/windows_report_full_remote.txt
|
||||
remote_repository: https://github.com/GuillaumeFalourd/poc-github-actions
|
||||
access_token: ${{ secrets.ACCESS_TOKEN }}
|
||||
force: true
|
||||
empty: true
|
||||
tags: true
|
||||
|
||||
windows-nochanges:
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2.3.4
|
||||
- uses: GuillaumeFalourd/git-commit-push@main
|
Loading…
Add table
Reference in a new issue