|
1 | 1 | { |
2 | | - "extends": ["config:base"], |
| 2 | + "extends": ["config:recommended"], |
3 | 3 | "timezone": "Europe/Berlin", |
4 | 4 | "rangeStrategy": "bump", |
5 | | - "semanticCommits": true, |
6 | | - "masterIssue": true, |
| 5 | + "semanticCommits": "enabled", |
| 6 | + "dependencyDashboard": true, |
7 | 7 | "prHourlyLimit": 0, |
8 | | - "node": { |
9 | | - "supportPolicy": ["current"], |
10 | | - "major": { |
11 | | - "enabled": true |
12 | | - } |
13 | | - }, |
14 | | - "regexManagers": [ |
| 8 | + "customManagers": [ |
15 | 9 | { |
| 10 | + "customType": "regex", |
16 | 11 | "fileMatch": ["^.github/workflows/.+\\.ya?ml$"], |
17 | | - "matchStrings": ["xdebug: xdebug-(?<currentValue>\\S+).*# renovate:keep-up-to-date"], |
| 12 | + "matchStrings": [ |
| 13 | + "xdebug: xdebug-(?<currentValue>\\S+).*# renovate:keep-up-to-date" |
| 14 | + ], |
18 | 15 | "depNameTemplate": "xdebug", |
19 | | - "lookupNameTemplate": "xdebug/xdebug", |
| 16 | + "packageNameTemplate": "xdebug/xdebug", |
20 | 17 | "datasourceTemplate": "github-tags", |
21 | 18 | "versioningTemplate": "regex:^(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)(?<prerelease>\\w+)?$" |
22 | 19 | }, |
23 | 20 | { |
| 21 | + "customType": "regex", |
24 | 22 | "fileMatch": ["^.github/workflows/.+\\.ya?ml$"], |
25 | | - "matchStrings": ["php: '(?<currentValue>[^']+)'.*# renovate:keep-up-to-date"], |
| 23 | + "matchStrings": [ |
| 24 | + "php: '(?<currentValue>[^']+)'.*# renovate:keep-up-to-date" |
| 25 | + ], |
26 | 26 | "depNameTemplate": "php", |
27 | | - "lookupNameTemplate": "php/php-src", |
| 27 | + "packageNameTemplate": "php/php-src", |
28 | 28 | "datasourceTemplate": "github-tags", |
29 | 29 | "versioningTemplate": "regex:^(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)(?<prerelease>\\w+)?$" |
30 | 30 | }, |
31 | 31 | { |
| 32 | + "customType": "regex", |
32 | 33 | "fileMatch": ["^.github/workflows/.+\\.ya?ml$"], |
33 | | - "matchStrings": ["node-version: '(?<currentValue>[^']+)'.*# renovate:keep-up-to-date"], |
| 34 | + "matchStrings": [ |
| 35 | + "node-version: '(?<currentValue>[^']+)'.*# renovate:keep-up-to-date" |
| 36 | + ], |
34 | 37 | "depNameTemplate": "node", |
35 | | - "lookupNameTemplate": "nodejs/node", |
| 38 | + "packageNameTemplate": "nodejs/node", |
36 | 39 | "datasourceTemplate": "github-tags", |
37 | 40 | "versioningTemplate": "node" |
38 | 41 | } |
39 | 42 | ], |
40 | 43 | "packageRules": [ |
41 | 44 | { |
42 | | - "packageNames": ["php"], |
| 45 | + "matchCategories": ["node"], |
| 46 | + "major": { |
| 47 | + "enabled": true |
| 48 | + } |
| 49 | + }, |
| 50 | + { |
| 51 | + "matchPackageNames": ["php"], |
43 | 52 | "extractVersion": "^php-(?<version>.*)$" |
44 | 53 | }, |
45 | 54 | { |
46 | | - "packageNames": ["node"], |
| 55 | + "matchPackageNames": ["node"], |
47 | 56 | "extractVersion": "^v(?<version>.*)$", |
48 | 57 | "commitMessageTopic": "Node.js", |
49 | 58 | "major": { |
50 | 59 | "enabled": true |
51 | 60 | } |
52 | 61 | }, |
53 | 62 | { |
54 | | - "packagePatterns": ["^vscode-debug"], |
55 | | - "groupName": "vscode-debug" |
| 63 | + "groupName": "vscode-debug", |
| 64 | + "matchPackageNames": ["/^vscode-debug/"] |
56 | 65 | }, |
57 | 66 | { |
58 | 67 | "matchPackageNames": ["vscode"], |
|
0 commit comments