mirror of
https://github.com/RetroDECK/net.rpcs3.RPCS3.git
synced 2024-11-22 08:35:39 +00:00
Merge PRs in the update workflow
This commit is contained in:
parent
f03b772dc5
commit
e2cae8b878
22
.github/workflows/merge.yml
vendored
22
.github/workflows/merge.yml
vendored
|
@ -1,22 +0,0 @@
|
|||
name: Merge any pull request
|
||||
on:
|
||||
schedule: # for scheduling to work this file must be in the default branch
|
||||
- cron: "0 1 * * *" # Every day at 01:00
|
||||
workflow_dispatch: # can be manually dispatched under GitHub's "Actions" tab
|
||||
|
||||
jobs:
|
||||
flatpak-external-data-checker:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: docker://ghcr.io/flathub/flatpak-external-data-checker:latest
|
||||
env:
|
||||
GIT_AUTHOR_NAME: Flatpak External Data Checker
|
||||
GIT_COMMITTER_NAME: Flatpak External Data Checker
|
||||
# email sets "github-actions[bot]" as commit author, see https://github.community/t/github-actions-bot-email-address/17204/6
|
||||
GIT_AUTHOR_EMAIL: 41898282+github-actions[bot]@users.noreply.github.com
|
||||
GIT_COMMITTER_EMAIL: 41898282+github-actions[bot]@users.noreply.github.com
|
||||
EMAIL: 41898282+github-actions[bot]@users.noreply.github.com
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
args: --edit-only net.rpcs3.RPCS3.yaml
|
4
.github/workflows/update.yml
vendored
4
.github/workflows/update.yml
vendored
|
@ -2,6 +2,7 @@ name: Check for updates
|
|||
on:
|
||||
schedule: # for scheduling to work this file must be in the default branch
|
||||
- cron: "30 0 * * *" # Every day at 00:30
|
||||
- cron: "30 1 * * *" # merge the next hour
|
||||
workflow_dispatch: # can be manually dispatched under GitHub's "Actions" tab
|
||||
|
||||
jobs:
|
||||
|
@ -9,6 +10,9 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Prevent the retrieval of newer commits
|
||||
if: github.event.schedule == "30 1 * * *"
|
||||
run: sed -i '/^ branch: master/d' net.rpcs3.RPCS3.yaml
|
||||
- uses: docker://ghcr.io/flathub/flatpak-external-data-checker:latest
|
||||
env:
|
||||
GIT_AUTHOR_NAME: Flatpak External Data Checker
|
||||
|
|
Loading…
Reference in a new issue