mirror of
https://github.com/RetroDECK/net.rpcs3.RPCS3.git
synced 2024-11-22 16:45:38 +00:00
Merge pull request #1243 from j8r/run-merge-workflow-later
Run merge workflow 1 hour after update
This commit is contained in:
commit
5f4f6b12a6
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
|
||||
|
|
|
@ -97,7 +97,7 @@ modules:
|
|||
- type: git
|
||||
url: https://github.com/RPCS3/rpcs3.git
|
||||
branch: master
|
||||
commit: ee3e36672c5fc1db971ec20776234c82aeaa417a
|
||||
commit: 1a9e38a1dddc9180ad6ef75515b16239f3548379
|
||||
- type: git
|
||||
url: https://github.com/intel/ittapi.git
|
||||
branch: master
|
||||
|
|
Loading…
Reference in a new issue