Merge pull request #128828 from maralorn/workflow

.github/workflows/periodic-merge-*: Tiny improvements

authored by

Martin Weinelt and committed by
GitHub
19405a60 da883c88

+3 -3
+2 -2
.github/workflows/periodic-merge-24h.yml
··· 5 # * and make sure that all major rebuilds happen before the staging 6 # branch get’s merged back into its base branch. 7 8 - name: "Periodic Merges" 9 10 11 on: 12 schedule: 13 # * is a special character in YAML so you have to quote this string 14 # Merge every 6 hours 15 - - cron: '0 */24 * * *' 16 17 jobs: 18 periodic-merge:
··· 5 # * and make sure that all major rebuilds happen before the staging 6 # branch get’s merged back into its base branch. 7 8 + name: "Periodic Merges (24h)" 9 10 11 on: 12 schedule: 13 # * is a special character in YAML so you have to quote this string 14 # Merge every 6 hours 15 + - cron: '0 0 * * *' 16 17 jobs: 18 periodic-merge:
+1 -1
.github/workflows/periodic-merge-6h.yml
··· 5 # * and make sure that all major rebuilds happen before the staging 6 # branch get’s merged back into its base branch. 7 8 - name: "Periodic Merges" 9 10 11 on:
··· 5 # * and make sure that all major rebuilds happen before the staging 6 # branch get’s merged back into its base branch. 7 8 + name: "Periodic Merges (6h)" 9 10 11 on: