Skip to content

Commit 3eeb771

Browse files
committed
MNT Run module-standardiser
1 parent c4efc2f commit 3eeb771

File tree

4 files changed

+28
-8
lines changed

4 files changed

+28
-8
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:20 PM UTC, only on Monday and Tuesday
4+
# At 3:15 PM UTC, only on Monday and Tuesday
55
schedule:
6-
- cron: '20 12 * * 1,2'
6+
- cron: '15 15 * * 1,2'
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 7:35 AM UTC, on day 8 of the month
4+
# At 12:00 PM UTC, on day 9 of the month
55
schedule:
6-
- cron: '35 7 8 * *'
6+
- cron: '0 12 9 * *'
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:20 PM UTC, only on Friday
4+
# At 3:15 PM UTC, only on Friday
55
schedule:
6-
- cron: '20 12 * * 5'
6+
- cron: '15 15 * * 5'
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

.github/workflows/update-js.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,22 @@ name: Update JS
22

33
on:
44
workflow_dispatch:
5-
# Run on a schedule of once per quarter
5+
# At 7:35 PM UTC, on day 1 of the month, only in March and September
66
schedule:
7-
- cron: '35 7 1 */3 *'
7+
- cron: '35 19 1 3,9 *'
8+
9+
permissions: {}
810

911
jobs:
1012
update-js:
1113
name: Update JS
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+
pull-requests: write
20+
actions: write
1521
steps:
1622
- name: Update JS
1723
uses: silverstripe/gha-update-js@v1

0 commit comments

Comments
 (0)