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:
Frederik Rietdijk 2020-12-02 14:25:06 +01:00
parent ad11ff123a
commit d24639b341

View file

@ -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: