File tree Expand file tree Collapse file tree 2 files changed +16
-5
lines changed Expand file tree Collapse file tree 2 files changed +16
-5
lines changed Original file line number Diff line number Diff line change 4
4
push :
5
5
pull_request :
6
6
workflow_dispatch :
7
- # Every Sunday at 12:20pm UTC
8
- schedule :
9
- - cron : ' 20 12 * * 0'
10
7
11
8
jobs :
12
9
ci :
13
10
name : CI
14
- # Only run cron on the symbiote account
15
- if : (github.event_name == 'schedule' && github.repository_owner == 'symbiote') || (github.event_name != 'schedule')
16
11
uses : silverstripe/gha-ci/.github/workflows/ci.yml@v1
Original file line number Diff line number Diff line change
1
+ name : Dispatch CI
2
+
3
+ on :
4
+ # At 12:20 PM UTC, only on Sunday and Monday
5
+ schedule :
6
+ - cron : ' 20 12 * * 0,1'
7
+
8
+ jobs :
9
+ dispatch-ci :
10
+ name : Dispatch CI
11
+ # Only run cron on the silverstripe account
12
+ if : (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule')
13
+ runs-on : ubuntu-latest
14
+ steps :
15
+ - name : Dispatch CI
16
+ uses : silverstripe/gha-dispatch-ci@v1
You can’t perform that action at this time.
0 commit comments