|
1 | 1 | { |
2 | 2 | "$schema": "https://docs.renovatebot.com/renovate-schema.json", |
3 | 3 | "extends": [ |
4 | | - "config:base", |
| 4 | + "config:recommended", |
5 | 5 | ":semanticCommitsDisabled", |
6 | 6 | "schedule:monthly" |
7 | 7 | ], |
8 | | - "reviewers": [ |
9 | | - "team:sig-ux" |
10 | | - ], |
| 8 | + "reviewers": ["team:sig-ux"], |
11 | 9 | "automerge": true, |
12 | 10 | "packageRules": [ |
13 | 11 | { |
14 | 12 | "matchDatasources": ["npm"], |
15 | 13 | "addLabels": ["javascript"], |
16 | | - "stabilityDays": 3 |
| 14 | + "minimumReleaseAge": "3 days" |
17 | 15 | }, |
18 | 16 | { |
19 | 17 | "matchPackageNames": ["node"], |
20 | 18 | "allowedVersions": "/20.[0-9]+.[0-9]+(.[0-9]+)?$/" |
21 | 19 | } |
22 | 20 | ], |
23 | | - "regexManagers": [ |
| 21 | + "customManagers": [ |
24 | 22 | { |
| 23 | + "customType": "regex", |
25 | 24 | "fileMatch": ["pom.xml"], |
26 | | - "matchStrings": ["<node.version>(?<currentValue>.*?)<\/node.version>"], |
| 25 | + "matchStrings": ["<node.version>(?<currentValue>.*?)</node.version>"], |
27 | 26 | "depNameTemplate": "node", |
28 | 27 | "datasourceTemplate": "npm" |
29 | 28 | }, |
30 | 29 | { |
| 30 | + "customType": "regex", |
31 | 31 | "fileMatch": ["pom.xml"], |
32 | | - "matchStrings": ["<npm.version>(?<currentValue>.*?)<\/npm.version>"], |
| 32 | + "matchStrings": ["<npm.version>(?<currentValue>.*?)</npm.version>"], |
33 | 33 | "depNameTemplate": "npm", |
34 | 34 | "datasourceTemplate": "npm" |
35 | 35 | } |
36 | 36 | ], |
37 | | - "labels": [ |
38 | | - "dependencies" |
39 | | - ], |
| 37 | + "labels": ["dependencies"], |
40 | 38 | "rebaseWhen": "conflicted" |
41 | 39 | } |
0 commit comments