|
3 | 3 | "extends": [ |
4 | 4 | "config:best-practices", |
5 | 5 | ":enableVulnerabilityAlerts", |
6 | | - ":separateMultipleMajorReleases", |
7 | 6 | "customManagers:biomeVersions", |
8 | | - "schedule:weekly" |
| 7 | + "schedule:monthly" |
9 | 8 | ], |
10 | 9 | "labels": ["dependency"], |
11 | 10 | "rangeStrategy": "pin", |
| 11 | + "prConcurrentLimit": 5, |
| 12 | + "minimumReleaseAge": "7 days", |
12 | 13 | "packageRules": [ |
13 | 14 | { |
14 | 15 | "matchDepTypes": ["engines"], |
|
18 | 19 | "description": "Remove word `dependency` from commit messages and PR titles", |
19 | 20 | "matchDatasources": ["npm"], |
20 | 21 | "commitMessageTopic": "{{depName}}" |
| 22 | + }, |
| 23 | + { |
| 24 | + "description": "Group all non-major npm updates", |
| 25 | + "matchDatasources": ["npm"], |
| 26 | + "matchUpdateTypes": ["minor", "patch"], |
| 27 | + "groupName": "npm-non-major" |
| 28 | + }, |
| 29 | + { |
| 30 | + "description": "Group all major npm updates", |
| 31 | + "matchDatasources": ["npm"], |
| 32 | + "matchUpdateTypes": ["major"], |
| 33 | + "groupName": "npm-major" |
| 34 | + }, |
| 35 | + { |
| 36 | + "description": "Group all GitHub Actions updates", |
| 37 | + "matchManagers": ["github-actions"], |
| 38 | + "groupName": "github-actions" |
| 39 | + }, |
| 40 | + { |
| 41 | + "description": "Automerge non-major updates", |
| 42 | + "matchUpdateTypes": ["minor", "patch", "digest"], |
| 43 | + "automerge": true |
21 | 44 | } |
22 | 45 | ] |
23 | 46 | } |
0 commit comments