File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2,14 +2,14 @@ name: Nightly Dispatcher
22
33on :
44 schedule :
5- # Run main branch at midnight (0 :00 UTC)
6- - cron : ' 0 0 * * *'
5+ # Run main branch at 10:00 PM (22 :00 UTC)
6+ - cron : ' 0 22 * * *'
77 # Run version/mx/10 branch at 4:00 AM UTC
88 - cron : ' 0 4 * * *'
99
1010jobs :
1111 dispatch-main :
12- if : github.event.schedule == '0 0 * * *'
12+ if : github.event.schedule == '0 22 * * *'
1313 runs-on : ubuntu-latest
1414 outputs :
1515 run-id : ${{ steps.trigger.outputs.run-id }}
8282
8383 auto-retry-main :
8484 needs : dispatch-main
85- if : always() && needs.dispatch-main.result == 'success' && github.event.schedule == '0 0 * * *'
85+ if : always() && needs.dispatch-main.result == 'success' && github.event.schedule == '0 22 * * *'
8686 runs-on : ubuntu-latest
8787 steps :
8888 - name : " Monitor and retry failed jobs"
You can’t perform that action at this time.
0 commit comments