Skip to content

Commit c215d49

Browse files
committed
feat: trigger main at 10pm
1 parent bb75fa3 commit c215d49

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/NightlyDispatcher.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ name: Nightly Dispatcher
22

33
on:
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

1010
jobs:
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 }}
@@ -82,7 +82,7 @@ jobs:
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"

0 commit comments

Comments
 (0)