Merge branch '3' into 4

This commit is contained in:
github-actions 2024-05-23 00:21:48 +00:00
commit 77a480fc2f
3 changed files with 20 additions and 6 deletions

View File

@ -1,9 +1,11 @@
name: Dispatch CI
on:
# At 11:10 AM UTC, only on Sunday and Monday
# At 8:40 PM UTC, only on Thursday and Friday
schedule:
- cron: '10 11 * * 0,1'
- cron: '40 20 * * 4,5'
permissions: {}
jobs:
dispatch-ci:
@ -11,6 +13,9 @@ jobs:
# Only run cron on the silverstripe account
if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule')
runs-on: ubuntu-latest
permissions:
contents: read
actions: write
steps:
- name: Dispatch CI
uses: silverstripe/gha-dispatch-ci@v1

View File

@ -1,17 +1,21 @@
name: Keepalive
on:
# At 9:45 PM UTC, on day 18 of the month
# At 5:25 PM UTC, on day 26 of the month
schedule:
- cron: '45 21 18 * *'
- cron: '25 17 26 * *'
workflow_dispatch:
permissions: {}
jobs:
keepalive:
name: Keepalive
# Only run cron on the silverstripe account
if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule')
runs-on: ubuntu-latest
permissions:
actions: write
steps:
- name: Keepalive
uses: silverstripe/gha-keepalive@v1

View File

@ -1,17 +1,22 @@
name: Merge-up
on:
# At 11:10 AM UTC, only on Thursday
# At 8:40 PM UTC, only on Monday
schedule:
- cron: '10 11 * * 4'
- cron: '40 20 * * 1'
workflow_dispatch:
permissions: {}
jobs:
merge-up:
name: Merge-up
# Only run cron on the silverstripe account
if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule')
runs-on: ubuntu-latest
permissions:
contents: write
actions: write
steps:
- name: Merge-up
uses: silverstripe/gha-merge-up@v1