We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2a8102 commit 03d91c2Copy full SHA for 03d91c2
.github/workflows/main.yml
@@ -5,8 +5,10 @@ on:
5
merge_group:
6
workflow_dispatch:
7
schedule:
8
- # Run every four hours to make sure that all changes are up-to-date
9
- - cron: 0 */4 * * *
+ # Run at 4 AM UTC daily to make sure that all changes are up-to-date
+ # We run the cron job at a time where merges don't usually happen, in order to avoid race
10
+ # conditions with the `merge_group` workflow exeecution.
11
+ - cron: 0 4 * * *
12
13
concurrency:
14
# We want to make sure that parallel executions (merge queue, cron, manual) of this workflow
0 commit comments