Skip to content

Commit b0a5af3

Browse files
Merge pull request #111 from creative-commoners/pulls/3/module-standardiser-1715811735
MNT Run module-standardiser
2 parents 79a1053 + 6168b88 commit b0a5af3

File tree

3 files changed

+20
-6
lines changed

3 files changed

+20
-6
lines changed

.github/workflows/dispatch-ci.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,21 @@
11
name: Dispatch CI
22

33
on:
4-
# At 12:10 PM UTC, only on Saturday and Sunday
4+
# At 7:35 AM UTC, only on Sunday and Monday
55
schedule:
6-
- cron: '10 12 * * 6,0'
6+
- cron: '35 7 * * 0,1'
7+
8+
permissions: {}
79

810
jobs:
911
dispatch-ci:
1012
name: Dispatch CI
1113
# Only run cron on the silverstripe account
1214
if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule')
1315
runs-on: ubuntu-latest
16+
permissions:
17+
contents: read
18+
actions: write
1419
steps:
1520
- name: Dispatch CI
1621
uses: silverstripe/gha-dispatch-ci@v1

.github/workflows/keepalive.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,21 @@
11
name: Keepalive
22

33
on:
4-
# At 2:10 AM UTC, on day 3 of the month
4+
# At 7:35 AM UTC, on day 8 of the month
55
schedule:
6-
- cron: '10 2 3 * *'
6+
- cron: '35 7 8 * *'
77
workflow_dispatch:
88

9+
permissions: {}
10+
911
jobs:
1012
keepalive:
1113
name: Keepalive
1214
# Only run cron on the silverstripe account
1315
if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule')
1416
runs-on: ubuntu-latest
17+
permissions:
18+
actions: write
1519
steps:
1620
- name: Keepalive
1721
uses: silverstripe/gha-keepalive@v1

.github/workflows/merge-up.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,22 @@
11
name: Merge-up
22

33
on:
4-
# At 12:10 PM UTC, only on Wednesday
4+
# At 7:35 AM UTC, only on Thursday
55
schedule:
6-
- cron: '10 12 * * 3'
6+
- cron: '35 7 * * 4'
77
workflow_dispatch:
88

9+
permissions: {}
10+
911
jobs:
1012
merge-up:
1113
name: Merge-up
1214
# Only run cron on the silverstripe account
1315
if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule')
1416
runs-on: ubuntu-latest
17+
permissions:
18+
contents: write
19+
actions: write
1520
steps:
1621
- name: Merge-up
1722
uses: silverstripe/gha-merge-up@v1

0 commit comments

Comments
 (0)