Skip to content

Commit b3a5880

Browse files
committed
MNT Run module-standardiser
1 parent 1b6a579 commit b3a5880

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

.github/workflows/auto-tag.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,15 @@ on:
44
tags:
55
- '*.*.*'
66
workflow_dispatch:
7+
8+
permissions: {}
9+
710
jobs:
811
auto-tag:
912
name: Auto-tag
1013
runs-on: ubuntu-latest
14+
permissions:
15+
contents: write
1116
steps:
1217
- name: Auto-tag
1318
uses: silverstripe/gha-auto-tag@v1

.github/workflows/keepalive.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,21 @@
11
name: Keepalive
22

33
on:
4-
# At 12:00 AM UTC, on day 21 of the month
4+
# At 1:05 PM UTC, on day 2 of the month
55
schedule:
6-
- cron: '0 0 21 * *'
6+
- cron: '5 13 2 * *'
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

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,22 @@
11
name: Merge-up
22

33
on:
4-
# At 12:00 AM UTC, only on Saturday
4+
# At 4:20 AM UTC, only on Wednesday
55
schedule:
6-
- cron: '0 0 * * 6'
6+
- cron: '20 4 * * 3'
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)