From d635042e57cac46f51b29817718c9e682be0b53d Mon Sep 17 00:00:00 2001 From: Yureka Date: Thu, 8 Aug 2024 15:22:44 +0200 Subject: [PATCH] adjust timer for staging sync services --- hosts/gerrit01/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/gerrit01/default.nix b/hosts/gerrit01/default.nix index f2409b7..7dc7de9 100755 --- a/hosts/gerrit01/default.nix +++ b/hosts/gerrit01/default.nix @@ -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"; };