GH action: merge staging(-next): fix cron
It went every minute past every 6th hour, which was too often. Now it should go on the zeroth minute every 6th hour.
This commit is contained in:
parent
ad11ff123a
commit
d24639b341
|
@ -4,7 +4,7 @@ on:
|
||||||
schedule:
|
schedule:
|
||||||
# * is a special character in YAML so you have to quote this string
|
# * is a special character in YAML so you have to quote this string
|
||||||
# Merge every 6 hours
|
# Merge every 6 hours
|
||||||
- cron: '* */6 * * *'
|
- cron: '0 */6 * * *'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
sync-branch:
|
sync-branch:
|
||||||
|
|
Loading…
Reference in New Issue