From d24639b341b2b17df1e48122ec61e8e5abb27d4c Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Wed, 2 Dec 2020 14:25:06 +0100 Subject: [PATCH] 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. --- .github/workflows/merge-staging.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/merge-staging.yml b/.github/workflows/merge-staging.yml index c76c66713cf..1aadef16328 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: