Merge branch '3' into 4

This commit is contained in:
github-actions 2024-05-23 00:22:52 +00:00
commit 3e9fb77691
4 changed files with 27 additions and 7 deletions

View File

@ -1,9 +1,11 @@
name: Dispatch CI
on:
# At 11:30 AM UTC, only on Saturday and Sunday
# At 12:00 PM UTC, only on Tuesday and Wednesday
schedule:
- cron: '30 11 * * 6,0'
- cron: '0 12 * * 2,3'
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 AM UTC, on day 8 of the month
# At 9:45 AM UTC, on day 10 of the month
schedule:
- cron: '35 7 8 * *'
- cron: '45 9 10 * *'
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:30 AM UTC, only on Wednesday
# At 12:00 PM UTC, only on Saturday
schedule:
- cron: '30 11 * * 3'
- cron: '0 12 * * 6'
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

View File

@ -4,7 +4,9 @@ on:
workflow_dispatch:
# Run on a schedule of once per quarter
schedule:
- cron: '35 7 1 */3 *'
- cron: '20 16 1 */3 *'
permissions: {}
jobs:
update-js:
@ -12,6 +14,10 @@ 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: write
pull-requests: write
actions: write
steps:
- name: Update JS
uses: silverstripe/gha-update-js@v1