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.
2 parents b2a8102 + 7d111ca commit 58b83abCopy full SHA for 58b83ab
.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 execution.
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