Merge pull request #121 from creative-commoners/pulls/3/module-standardiser-1715811606

MNT Run module-standardiser
This commit is contained in:
Guy Sartorelli 2024-05-17 10:21:07 +12:00 committed by GitHub
commit 9008a5be7d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 20 additions and 6 deletions

View File

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

View File

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

View File

@ -1,17 +1,22 @@
name: Merge-up name: Merge-up
on: on:
# At 1:10 PM UTC, only on Tuesday # At 10:50 PM UTC, only on Wednesday
schedule: schedule:
- cron: '10 13 * * 2' - cron: '50 22 * * 3'
workflow_dispatch: workflow_dispatch:
permissions: {}
jobs: jobs:
merge-up: merge-up:
name: Merge-up name: Merge-up
# Only run cron on the silverstripe account # Only run cron on the silverstripe account
if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule') if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule')
runs-on: ubuntu-latest runs-on: ubuntu-latest
permissions:
contents: write
actions: write
steps: steps:
- name: Merge-up - name: Merge-up
uses: silverstripe/gha-merge-up@v1 uses: silverstripe/gha-merge-up@v1