adjust timer for staging sync services

This commit is contained in:
Yureka 2024-08-08 15:22:44 +02:00
parent b6375b8294
commit d635042e57

View file

@ -64,12 +64,12 @@
# Sync main -> staging-next -> staging
branches."main-to-staging-next" = mkLocalJob {
timer = "hourly";
timer = "00/8:20:00"; # every 8 hours, 20 minutes past the full hour
fromRefspec = "main";
localRefspec = "staging-next";
};
branches."staging-next-to-staging" = mkLocalJob {
timer = "hourly";
timer = "00/8:40:00"; # every 8 hours, 40 minutes past the full hour
fromRefspec = "staging-next";
localRefspec = "staging";
};