Compare commits

...

13 Commits

Author SHA1 Message Date
Guy Sartorelli
01469b4217
Merge branch '5' into 6 2024-10-03 11:15:52 +13:00
Guy Sartorelli
7cc1e8d3c3
Merge branch '5.3' into 5 2024-10-03 11:15:37 +13:00
Guy Sartorelli
2196d3684d
Merge branch '5.2' into 5.3 2024-10-03 11:14:54 +13:00
Guy Sartorelli
6b5abd976b
MNT Run module-standardiser (#92) 2024-10-02 10:03:42 +13:00
Guy Sartorelli
cff0d7e586
MNT Update development dependencies 2024-09-10 09:10:21 +12:00
Guy Sartorelli
cf6fb6822b
MNT Update release dependencies 2024-09-10 09:10:17 +12:00
Guy Sartorelli
a41f988556
MNT Update development dependencies 2024-09-03 09:32:55 +12:00
Guy Sartorelli
88ce9e8bcb
Merge branch '5.2' into 5 2024-09-02 10:04:47 +12:00
Guy Sartorelli
428103c18f
MNT Run module-standardiser (#89) 2024-08-01 18:33:14 +12:00
Guy Sartorelli
46bc4d0e80
Merge pull request #85 from creative-commoners/pulls/5/module-standardiser-1715911236
MNT Run module-standardiser
2024-05-21 16:23:02 +12:00
Steve Boyd
d9ab0dbf69 MNT Run module-standardiser 2024-05-17 15:11:57 +12:00
Guy Sartorelli
b30f9a6a56
Merge pull request #84 from creative-commoners/pulls/5/module-standardiser-1715811479
MNT Run module-standardiser
2024-05-17 10:18:28 +12:00
Steve Boyd
62fbd3e290 MNT Run module-standardiser 2024-05-16 10:17:59 +12:00
2 changed files with 13 additions and 4 deletions

View File

@ -1,9 +1,11 @@
name: Dispatch CI
on:
# At 2:10 PM UTC, only on Thursday and Friday
# At 9:45 AM UTC, only on Thursday and Friday
schedule:
- cron: '10 14 * * 4,5'
- cron: '45 9 * * 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 1:05 PM UTC, on day 14 of the month
# At 6:30 AM UTC, on day 19 of the month
schedule:
- cron: '5 13 14 * *'
- cron: '30 6 19 * *'
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