Skip to content

Commit

Permalink
renovate: group all go updates together and fix a rule
Browse files Browse the repository at this point in the history
Let's group the Go updates together regardless of the branch so that's
it's applied to everything. And fix a mistake commited in
f03102c putting stables branches
instead of main branch in a package rule.

Signed-off-by: Mahe Tardy <[email protected]>
  • Loading branch information
mtardy committed Jun 6, 2024
1 parent 4b2e056 commit 0419c09
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -213,15 +213,21 @@
}
},
{
// main branch is using the new toolchain directive
// Grouping go packages updates together
"groupName": "Go",
"matchPackageNames": [
"go",
"docker.io/library/golang"
],
},
{
// main branch is using the new toolchain directive
"matchPackageNames": [
"go",
"docker.io/library/golang"
],
"matchBaseBranches": [
"v1.0",
"v1.1",
"main",
],
// postUpgradeTasks is only for when the Go module directives are bumped
"postUpgradeTasks": {
Expand All @@ -235,7 +241,6 @@
},
{
// stable branches are using the go directive
"groupName": "Go",
"matchPackageNames": [
"go",
"docker.io/library/golang"
Expand Down

0 comments on commit 0419c09

Please sign in to comment.