File tree 3 files changed +20
-6
lines changed
3 files changed +20
-6
lines changed Original file line number Diff line number Diff line change 1
1
name : Dispatch CI
2
2
3
3
on :
4
- # At 12:10 PM UTC, only on Saturday and Sunday
4
+ # At 7:35 AM UTC, only on Sunday and Monday
5
5
schedule :
6
- - cron : ' 10 12 * * 6,0'
6
+ - cron : ' 35 7 * * 0,1'
7
+
8
+ permissions : {}
7
9
8
10
jobs :
9
11
dispatch-ci :
10
12
name : Dispatch CI
11
13
# Only run cron on the silverstripe account
12
14
if : (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule')
13
15
runs-on : ubuntu-latest
16
+ permissions :
17
+ contents : read
18
+ actions : write
14
19
steps :
15
20
- name : Dispatch CI
16
21
uses : silverstripe/gha-dispatch-ci@v1
Original file line number Diff line number Diff line change 1
1
name : Keepalive
2
2
3
3
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
5
5
schedule :
6
- - cron : ' 10 2 3 * *'
6
+ - cron : ' 35 7 8 * *'
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:10 PM UTC, only on Wednesday
4
+ # At 7:35 AM UTC, only on Thursday
5
5
schedule :
6
- - cron : ' 10 12 * * 3 '
6
+ - cron : ' 35 7 * * 4 '
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