mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
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
2
.github/workflows/merge-staging.yml
vendored
2
.github/workflows/merge-staging.yml
vendored
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user