website/renovate.json
Jake Howard aae66c4979
Don't open MRs for patch version updates
These can stack up once it's ready for a minor update, else I get flooded with MRs.
2022-09-25 22:13:23 +01:00

14 lines
230 B
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"prConcurrentLimit": 0,
"packageRules": [
{
"matchUpdateTypes": ["patch"],
"enabled": false
}
]
}