fix: unblock Renovate PR creation and reduce cargo branch sprawl (#630)

This commit is contained in:
Will Pfleger
2026-05-20 20:11:35 +00:00
committed by GitHub
parent af08b0f0e8
commit 8dcf24f993
+6 -3
View File
@@ -1,15 +1,18 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended", "helpers:pinGitHubActionDigests"],
"recreateWhen": "never",
"prCreation": "immediate",
"automerge": false,
"recreateWhen": "always",
"separateMinorPatch": true,
"postUpdateOptions": ["cargo:updateLockfile"],
"packageRules": [
{
"description": "Keep Rust crate updates isolated because 0.x minor releases often contain breaking changes.",
"description": "Keep Rust crate updates isolated because 0.x minor releases often contain breaking changes. Group all minor updates per crate (don't split by individual version).",
"matchManagers": ["cargo"],
"groupName": null,
"separateMinorPatch": true,
"separateMultipleMinor": true
"separateMultipleMinor": false
}
]
}