MNT Run module-standardiser

This commit is contained in:
Steve Boyd 2024-05-16 10:18:56 +12:00
parent ee4f763a14
commit 96694e16f5
3 changed files with 20 additions and 6 deletions

View File

@ -1,9 +1,11 @@
name: Dispatch CI
on:
# At 12:00 PM UTC, only on Friday and Saturday
# At 11:55 PM UTC, only on Friday and Saturday
schedule:
- cron: '0 12 * * 5,6'
- cron: '55 23 * * 5,6'
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 7:35 PM UTC, on day 24 of the month
# At 11:55 PM UTC, on day 20 of the month
schedule:
- cron: '35 19 24 * *'
- cron: '55 23 20 * *'
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 12:00 PM UTC, only on Tuesday
# At 11:55 PM UTC, only on Tuesday
schedule:
- cron: '0 12 * * 2'
- cron: '55 23 * * 2'
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