Skip to content

Commit 30cc79a

Browse files
committed
chore(renovate): batch all indirect Go deps into a single PR
Disable separateMajorMinor, separateMultipleMajor, and separateMinorPatch on the go-indirect packageRule so Renovate collapses every indirect Go dependency update into one branch/PR regardless of semver level. Today Renovate splits indirects across separate branches per update type (e.g. renovate/major-go-indirect), producing per-severity PRs that churn nix/package.nix individually. Batching them is lower maintenance noise and lets go mod tidy settle the whole set once.
1 parent 120e275 commit 30cc79a

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

renovate.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,14 @@
1818
"pinDigests": true
1919
},
2020
{
21-
"description": "Group all indirect Go dependencies",
21+
"description": "Group all indirect Go dependencies (major, minor, patch in one PR)",
2222
"matchManagers": ["gomod"],
2323
"matchDepTypes": ["indirect"],
2424
"groupName": "go-indirect",
25-
"enabled": true
25+
"enabled": true,
26+
"separateMajorMinor": false,
27+
"separateMultipleMajor": false,
28+
"separateMinorPatch": false
2629
},
2730
{
2831
"description": "Group GitHub Actions updates",

0 commit comments

Comments
 (0)