Skip to content

Commit 8682cfb

Browse files
committed
fix: pass config validation
1 parent e9dd95d commit 8682cfb

File tree

1 file changed

+28
-25
lines changed

1 file changed

+28
-25
lines changed

renovate.json

Lines changed: 28 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,29 @@
11
{
2-
"extends": [
3-
":enabled",
4-
":python"
5-
],
6-
"customManagers": [
7-
{
8-
"customType": "regex",
9-
"fileMatch": ["clang_tools/__init__.py"],
10-
"matchStringsStrategy": "any",
11-
"matchStrings": [
12-
"release_tag = \\s*\"(?<currentValue>.*)\"\\s*//"
13-
],
14-
"depNameTemplate": "release_tag = 'master-1234abcd'",
15-
"datasourceTemplate": "github-releases"
16-
}
17-
],
18-
"packageRules": [
19-
{
20-
"managers": ["regex"],
21-
"datasources": ["github-releases"],
22-
"repositories": ["cpp-linter/clang-tools-static-binaries"],
23-
"updateTypes": ["major", "minor", "patch"]
24-
}
25-
]
26-
}
2+
"extends": ["config:base"],
3+
"customManagers": [
4+
{
5+
"customType": "regex",
6+
"fileMatch": ["clang_tools/__init__.py"],
7+
"matchStringsStrategy": "any",
8+
"matchStrings": [
9+
"release_tag = \\s*\"(?<currentValue>.*)\"\\s*//"
10+
],
11+
"depNameTemplate": "release_tag = 'master-1234abcd'",
12+
"datasourceTemplate": "github-releases"
13+
}
14+
],
15+
"packageRules": [
16+
{
17+
"managers": ["regex"],
18+
"datasources": ["github-releases"],
19+
"updateTypes": ["major", "minor", "patch"]
20+
}
21+
],
22+
"repositories": [
23+
{
24+
"matchDatasource": "github-releases",
25+
"matchPackageNames": ["cpp-linter/clang-tools-static-binaries"],
26+
"enabled": true
27+
}
28+
]
29+
}

0 commit comments

Comments
 (0)