summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2020-12-02 14:25:06 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2020-12-02 14:25:08 +0100
commitd24639b341b2b17df1e48122ec61e8e5abb27d4c (patch)
tree38b8b25f942198597fb82126df291820bf1ed056 /.github
parentad11ff123a78798a5ea1342f319c34b01995037c (diff)
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.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/merge-staging.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/merge-staging.yml b/.github/workflows/merge-staging.yml
index c76c66713cfb..1aadef16328a 100644
--- a/.github/workflows/merge-staging.yml
+++ b/.github/workflows/merge-staging.yml
@@ -4,7 +4,7 @@ on:
schedule:
# * is a special character in YAML so you have to quote this string
# Merge every 6 hours
- - cron: '* */6 * * *'
+ - cron: '0 */6 * * *'
jobs:
sync-branch: