|
1 | 1 | {
|
2 | 2 | "$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
3 | 3 | "extends": [
|
4 |
| - "config:recommended" |
| 4 | + "config:base", |
| 5 | + ":combinePatchMinorReleases", |
| 6 | + ":dependencyDashboard", |
| 7 | + ":maintainLockFilesWeekly", |
| 8 | + ":pinAllExceptPeerDependencies", |
| 9 | + ":prConcurrentLimit10", |
| 10 | + ":rebaseStalePrs", |
| 11 | + ":separateMajorReleases", |
| 12 | + "group:monorepos", |
| 13 | + "schedule:weekends" |
| 14 | + ], |
| 15 | + "enabledManagers": ["cargo", "github-actions", "npm", "nuget"], |
| 16 | + "commitMessagePrefix": "[deps]:", |
| 17 | + "commitMessageTopic": "{{depName}}", |
| 18 | + "packageRules": [ |
| 19 | + { |
| 20 | + "groupName": "cargo minor", |
| 21 | + "matchManagers": ["cargo"], |
| 22 | + "matchUpdateTypes": ["minor", "patch"] |
| 23 | + }, |
| 24 | + { |
| 25 | + "groupName": "gh minor", |
| 26 | + "matchManagers": ["github-actions"], |
| 27 | + "matchUpdateTypes": ["minor", "patch"] |
| 28 | + }, |
| 29 | + { |
| 30 | + "groupName": "npm minor", |
| 31 | + "matchManagers": ["npm"], |
| 32 | + "matchUpdateTypes": ["minor", "patch"] |
| 33 | + }, |
| 34 | + { |
| 35 | + "groupName": "nuget minor", |
| 36 | + "matchManagers": ["nuget"], |
| 37 | + "matchUpdateTypes": ["minor", "patch"] |
| 38 | + } |
5 | 39 | ]
|
6 | 40 | }
|
0 commit comments