Skip to content

Commit dc6927f

Browse files
chore(config): migrate config renovate.json
1 parent 184403a commit dc6927f

File tree

1 file changed

+29
-20
lines changed

1 file changed

+29
-20
lines changed

renovate.json

Lines changed: 29 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,67 @@
11
{
2-
"extends": ["config:base"],
2+
"extends": ["config:recommended"],
33
"timezone": "Europe/Berlin",
44
"rangeStrategy": "bump",
5-
"semanticCommits": true,
6-
"masterIssue": true,
5+
"semanticCommits": "enabled",
6+
"dependencyDashboard": true,
77
"prHourlyLimit": 0,
8-
"node": {
9-
"supportPolicy": ["current"],
10-
"major": {
11-
"enabled": true
12-
}
13-
},
14-
"regexManagers": [
8+
"customManagers": [
159
{
10+
"customType": "regex",
1611
"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+
],
1815
"depNameTemplate": "xdebug",
19-
"lookupNameTemplate": "xdebug/xdebug",
16+
"packageNameTemplate": "xdebug/xdebug",
2017
"datasourceTemplate": "github-tags",
2118
"versioningTemplate": "regex:^(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)(?<prerelease>\\w+)?$"
2219
},
2320
{
21+
"customType": "regex",
2422
"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+
],
2626
"depNameTemplate": "php",
27-
"lookupNameTemplate": "php/php-src",
27+
"packageNameTemplate": "php/php-src",
2828
"datasourceTemplate": "github-tags",
2929
"versioningTemplate": "regex:^(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)(?<prerelease>\\w+)?$"
3030
},
3131
{
32+
"customType": "regex",
3233
"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+
],
3437
"depNameTemplate": "node",
35-
"lookupNameTemplate": "nodejs/node",
38+
"packageNameTemplate": "nodejs/node",
3639
"datasourceTemplate": "github-tags",
3740
"versioningTemplate": "node"
3841
}
3942
],
4043
"packageRules": [
4144
{
42-
"packageNames": ["php"],
45+
"matchCategories": ["node"],
46+
"major": {
47+
"enabled": true
48+
}
49+
},
50+
{
51+
"matchPackageNames": ["php"],
4352
"extractVersion": "^php-(?<version>.*)$"
4453
},
4554
{
46-
"packageNames": ["node"],
55+
"matchPackageNames": ["node"],
4756
"extractVersion": "^v(?<version>.*)$",
4857
"commitMessageTopic": "Node.js",
4958
"major": {
5059
"enabled": true
5160
}
5261
},
5362
{
54-
"packagePatterns": ["^vscode-debug"],
55-
"groupName": "vscode-debug"
63+
"groupName": "vscode-debug",
64+
"matchPackageNames": ["/^vscode-debug/"]
5665
},
5766
{
5867
"matchPackageNames": ["vscode"],

0 commit comments

Comments
 (0)