mirror of
https://github.com/block/buzz.git
synced 2026-08-18 06:50:31 +02:00
24 lines
823 B
JSON
24 lines
823 B
JSON
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"extends": ["config:recommended", "helpers:pinGitHubActionDigests"],
|
|
"prCreation": "immediate",
|
|
"automerge": true,
|
|
"recreateWhen": "always",
|
|
"separateMinorPatch": true,
|
|
"postUpdateOptions": ["cargo:updateLockfile"],
|
|
"packageRules": [
|
|
{
|
|
"description": "Major version bumps often require code changes — require human review.",
|
|
"matchUpdateTypes": ["major"],
|
|
"automerge": false
|
|
},
|
|
{
|
|
"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": false
|
|
}
|
|
]
|
|
}
|