File tree 2 files changed +13
-4
lines changed
2 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 1
1
name : Dispatch CI
2
2
3
3
on :
4
- # At 11:00 AM UTC, only on Friday and Saturday
4
+ # At 4:20 AM UTC, only on Sunday and Monday
5
5
schedule :
6
- - cron : ' 0 11 * * 5,6'
6
+ - cron : ' 20 4 * * 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 10:50 AM UTC, on day 23 of the month
4
+ # At 1:05 AM UTC, on day 22 of the month
5
5
schedule :
6
- - cron : ' 50 10 23 * *'
6
+ - cron : ' 5 1 22 * *'
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
You can’t perform that action at this time.
0 commit comments