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.
52 lines
1.2 KiB
52 lines
1.2 KiB
{ |
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json", |
|
"extends": [ |
|
"config:base", |
|
":combinePatchMinorReleases", |
|
":dependencyDashboard", |
|
":maintainLockFilesWeekly", |
|
":pinAllExceptPeerDependencies", |
|
":prConcurrentLimit10", |
|
":rebaseStalePrs", |
|
"schedule:weekends", |
|
":separateMajorReleases" |
|
], |
|
"enabledManagers": [ |
|
"dockerfile", |
|
"docker-compose", |
|
"github-actions", |
|
"npm", |
|
"nuget" |
|
], |
|
"packageRules": [ |
|
{ |
|
"groupName": "dockerfile minor", |
|
"matchManagers": ["dockerfile"], |
|
"matchUpdateTypes": ["minor", "patch"] |
|
}, |
|
{ |
|
"groupName": "docker-compose minor", |
|
"matchManagers": ["docker-compose"], |
|
"matchUpdateTypes": ["minor", "patch"] |
|
}, |
|
{ |
|
"groupName": "gh minor", |
|
"matchManagers": ["github-actions"], |
|
"matchUpdateTypes": ["minor", "patch"] |
|
}, |
|
{ |
|
"groupName": "npm minor", |
|
"matchManagers": ["npm"], |
|
"matchUpdateTypes": ["minor", "patch"] |
|
}, |
|
{ |
|
"groupName": "nuget minor", |
|
"matchManagers": ["nuget"], |
|
"matchUpdateTypes": ["minor", "patch"] |
|
}, |
|
{ |
|
"matchPackageNames": ["Moq"], |
|
"allowedVersions": "<=4.18.4" |
|
} |
|
] |
|
}
|
|
|