From f4cbcf8db62ca3de41428f920695d0e75a51f22a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Fri, 10 Nov 2023 14:59:31 +0100 Subject: [PATCH] renovate: fix schedule --- internal/renovate/renovate.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/renovate/renovate.go b/internal/renovate/renovate.go index 271e758..6d7aaf4 100644 --- a/internal/renovate/renovate.go +++ b/internal/renovate/renovate.go @@ -55,7 +55,7 @@ func RenderConfig(cfgRenovate core.RenovateConfig, scanResult core.ScanResult, u // when we deploy these updates on Monday. schedule := "before 8am on Friday" if isInternalRenovate { - schedule = "Friday" //nolint:usestdlibvars //false positive + schedule = "on Friday" //nolint:usestdlibvars //false positive } // However, for pure library repos, we do the PRs on Thursday instead, so // that the dependency updates in these library repos trickle down into the @@ -63,7 +63,7 @@ func RenderConfig(cfgRenovate core.RenovateConfig, scanResult core.ScanResult, u if !isApplicationRepo { schedule = "before 8am on Thursday" if isInternalRenovate { - schedule = "Thursday" //nolint:usestdlibvars //false positive + schedule = "on Thursday" //nolint:usestdlibvars //false positive } }