You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
826 B
32 lines
826 B
{ |
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json", |
|
"extends": [ |
|
"config:base", |
|
":combinePatchMinorReleases", |
|
":dependencyDashboard", |
|
":maintainLockFilesWeekly", |
|
":pinAllExceptPeerDependencies", |
|
":prConcurrentLimit10", |
|
":rebaseStalePrs", |
|
"schedule:weekends", |
|
":separateMajorReleases" |
|
], |
|
"enabledManagers": ["dockerfile", "github-actions", "nuget"], |
|
"packageRules": [ |
|
{ |
|
"groupName": "dockerfile minor", |
|
"matchManagers": ["dockerfile"], |
|
"matchUpdateTypes": ["minor", "patch"] |
|
}, |
|
{ |
|
"groupName": "gh minor", |
|
"matchManagers": ["github-actions"], |
|
"matchUpdateTypes": ["minor", "patch"] |
|
}, |
|
{ |
|
"groupName": "nuget minor", |
|
"matchManagers": ["nuget"], |
|
"matchUpdateTypes": ["minor", "patch"] |
|
} |
|
] |
|
}
|
|
|