Commit 3eeb771 1 parent c4efc2f commit 3eeb771 Copy full SHA for 3eeb771
File tree 4 files changed +28
-8
lines changed
4 files changed +28
-8
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:20 PM UTC, only on Monday and Tuesday
4
+ # At 3:15 PM UTC, only on Monday and Tuesday
5
5
schedule :
6
- - cron : ' 20 12 * * 1,2'
6
+ - cron : ' 15 15 * * 1,2'
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 7:35 AM UTC, on day 8 of the month
4
+ # At 12:00 PM UTC, on day 9 of the month
5
5
schedule :
6
- - cron : ' 35 7 8 * *'
6
+ - cron : ' 0 12 9 * *'
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:20 PM UTC, only on Friday
4
+ # At 3:15 PM UTC, only on Friday
5
5
schedule :
6
- - cron : ' 20 12 * * 5'
6
+ - cron : ' 15 15 * * 5'
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
Original file line number Diff line number Diff line change @@ -2,16 +2,22 @@ name: Update JS
2
2
3
3
on :
4
4
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
6
6
schedule :
7
- - cron : ' 35 7 1 */3 *'
7
+ - cron : ' 35 19 1 3,9 *'
8
+
9
+ permissions : {}
8
10
9
11
jobs :
10
12
update-js :
11
13
name : Update JS
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
+ pull-requests : write
20
+ actions : write
15
21
steps :
16
22
- name : Update JS
17
23
uses : silverstripe/gha-update-js@v1
You can’t perform that action at this time.
0 commit comments