File tree Expand file tree Collapse file tree 3 files changed +18
-4
lines changed Expand file tree Collapse file tree 3 files changed +18
-4
lines changed Original file line number Diff line number Diff line change 4
4
tags :
5
5
- ' *.*.*'
6
6
workflow_dispatch :
7
+
8
+ permissions : {}
9
+
7
10
jobs :
8
11
auto-tag :
9
12
name : Auto-tag
10
13
runs-on : ubuntu-latest
14
+ permissions :
15
+ contents : write
11
16
steps :
12
17
- name : Auto-tag
13
18
uses : silverstripe/gha-auto-tag@v1
Original file line number Diff line number Diff line change 1
1
name : Keepalive
2
2
3
3
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
5
5
schedule :
6
- - cron : ' 0 0 21 * *'
6
+ - cron : ' 5 13 2 * *'
7
7
workflow_dispatch :
8
8
9
+ permissions : {}
10
+
9
11
jobs :
10
12
keepalive :
11
13
name : Keepalive
12
14
# Only run cron on the silverstripe account
13
15
if : (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule')
14
16
runs-on : ubuntu-latest
17
+ permissions :
18
+ actions : write
15
19
steps :
16
20
- name : Keepalive
17
21
uses : silverstripe/gha-keepalive@v1
Original file line number Diff line number Diff line change 1
1
name : Merge-up
2
2
3
3
on :
4
- # At 12:00 AM UTC, only on Saturday
4
+ # At 4:20 AM UTC, only on Wednesday
5
5
schedule :
6
- - cron : ' 0 0 * * 6 '
6
+ - cron : ' 20 4 * * 3 '
7
7
workflow_dispatch :
8
8
9
+ permissions : {}
10
+
9
11
jobs :
10
12
merge-up :
11
13
name : Merge-up
12
14
# Only run cron on the silverstripe account
13
15
if : (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule')
14
16
runs-on : ubuntu-latest
17
+ permissions :
18
+ contents : write
19
+ actions : write
15
20
steps :
16
21
- name : Merge-up
17
22
uses : silverstripe/gha-merge-up@v1
You can’t perform that action at this time.
0 commit comments