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.
This commit is contained in:
Jake Howard 2022-09-25 22:13:23 +01:00
parent d214c5d571
commit aae66c4979
Signed by: jake
GPG Key ID: 57AFB45680EDD477

View File

@ -3,5 +3,11 @@
"extends": [
"config:base"
],
"prConcurrentLimit": 0
"prConcurrentLimit": 0,
"packageRules": [
{
"matchUpdateTypes": ["patch"],
"enabled": false
}
]
}