mirror of
https://github.com/RetroDECK/net.rpcs3.RPCS3.git
synced 2025-02-18 04:55:38 +00:00
Add merge workflow
This commit is contained in:
parent
7ecb724f07
commit
4dff8de60e
22
.github/workflows/merge.yml
vendored
Normal file
22
.github/workflows/merge.yml
vendored
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
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
|
2
.github/workflows/update.yml
vendored
2
.github/workflows/update.yml
vendored
|
@ -1,7 +1,7 @@
|
||||||
name: Check for updates
|
name: Check for updates
|
||||||
on:
|
on:
|
||||||
schedule: # for scheduling to work this file must be in the default branch
|
schedule: # for scheduling to work this file must be in the default branch
|
||||||
- cron: "0 0,1 * * *" # Every day at 00:00
|
- cron: "30 0 * * *" # Every day at 00:30
|
||||||
workflow_dispatch: # can be manually dispatched under GitHub's "Actions" tab
|
workflow_dispatch: # can be manually dispatched under GitHub's "Actions" tab
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
Loading…
Reference in a new issue