Skip to content

Commit a597238

Browse files
committed
[CI] Switch order of CI schedule
This commit adjusts the schedule of the CI workflow jobs so that main runs last to ensure the current docs are from main, not 1.0.x. This is a workaround to deal w/ the fact that the docs build is currently broken.
1 parent bce10bd commit a597238

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci-dispatcher-1.0.x.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: CI Dispatcher (1.0.x)
22

33
on:
44
schedule:
5-
- cron: '0 11 * * */3' # Once every 3 day at 11am UTC
5+
- cron: '0 10 * * */3' # Once every 3 day at 10am UTC
66
workflow_dispatch:
77

88
jobs:

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
paths-ignore:
1010
- '.github/**'
1111
schedule:
12-
- cron: '0 10 * * *' # Once per day at 10am UTC
12+
- cron: '0 11 * * *' # Once per day at 11am UTC
1313
workflow_dispatch:
1414

1515
env:

0 commit comments

Comments
 (0)