Use separate rules per manager (#5399)
This commit is contained in:
parent
e5a9aaee19
commit
ad7abe86ef
|
@ -14,9 +14,18 @@
|
|||
"enabledManagers": ["cargo", "github-actions", "npm"],
|
||||
"packageRules": [
|
||||
{
|
||||
"groupName": "{{manager}}",
|
||||
"matchManagers": ["cargo", "github-actions", "npm", "nuget"],
|
||||
"matchPackagePatterns": ["*"],
|
||||
"groupName": "cargo minor",
|
||||
"matchManagers": ["cargo"],
|
||||
"matchUpdateTypes": ["minor", "patch"]
|
||||
},
|
||||
{
|
||||
"groupName": "gh minor",
|
||||
"matchManagers": ["github-actions"],
|
||||
"matchUpdateTypes": ["minor", "patch"]
|
||||
},
|
||||
{
|
||||
"groupName": "npm minor",
|
||||
"matchManagers": ["npm"],
|
||||
"matchUpdateTypes": ["minor", "patch"]
|
||||
},
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue