Skip to content

Commit

Permalink
renovate: fix schedule
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperSandro2000 committed Nov 10, 2023
1 parent a011aec commit f4cbcf8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/renovate/renovate.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,15 @@ 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

Check failure on line 58 in internal/renovate/renovate.go

View workflow job for this annotation

GitHub Actions / Build & Lint

directive `//nolint:usestdlibvars //false positive` is unused for linter "usestdlibvars" (nolintlint)
}
// 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
// application repos without an extra week of delay.
if !isApplicationRepo {
schedule = "before 8am on Thursday"
if isInternalRenovate {
schedule = "Thursday" //nolint:usestdlibvars //false positive
schedule = "on Thursday" //nolint:usestdlibvars //false positive

Check failure on line 66 in internal/renovate/renovate.go

View workflow job for this annotation

GitHub Actions / Build & Lint

directive `//nolint:usestdlibvars //false positive` is unused for linter "usestdlibvars" (nolintlint)
}
}

Expand Down

0 comments on commit f4cbcf8

Please sign in to comment.