Skip to content

Commit e8610e4

Browse files
committed
WIP: only take library/Cargo.toml into account
1 parent 00e6acb commit e8610e4

File tree

1 file changed

+49
-39
lines changed

1 file changed

+49
-39
lines changed

renovate.json

Lines changed: 49 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,51 @@
11
{
2-
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3-
"schedule": "at any time",
4-
"dependencyDashboard": true,
5-
"prHourlyLimit": 0,
6-
"env": {
7-
"RUSTC_BOOTSTRAP": "1"
8-
},
9-
"enabledManagers": [
10-
"cargo"
11-
],
12-
"cloneSubmodules": true,
13-
"cloneSubmodulesFilter": [
14-
"!src/llvm-project",
15-
"!src/gcc"
16-
],
17-
"forkProcessing": "enabled",
18-
"includePaths": [
19-
"library/**",
20-
"src/bootstrap/Cargo.toml",
21-
"src/tools/rustbook/Cargo.toml"
22-
],
23-
"packageRules": [{
24-
"matchFileNames": ["library/Cargo.toml", "library/**/Cargo.toml"],
25-
"enabled": true,
26-
"groupName": "library Cargo.lock"
27-
}, {
28-
"matchFileNames": ["src/bootstrap/Cargo.toml"],
29-
"enabled": true,
30-
"groupName": "bootstrap Cargo.lock"
31-
}, {
32-
"matchFileNames": ["src/tools/rustbook/Cargo.toml"],
33-
"enabled": true,
34-
"groupName": "rustbook Cargo.lock"
35-
}],
36-
"rangeStrategy": "in-range-only",
37-
"lockFileMaintenance": {
38-
"enabled": true,
39-
"schedule": "at any time"
40-
}
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"schedule": "at any time",
4+
"dependencyDashboard": true,
5+
"prHourlyLimit": 0,
6+
"env": {
7+
"RUSTC_BOOTSTRAP": "1"
8+
},
9+
"enabledManagers": [
10+
"cargo"
11+
],
12+
"cloneSubmodules": true,
13+
"cloneSubmodulesFilter": [
14+
"!src/llvm-project",
15+
"!src/gcc"
16+
],
17+
"forkProcessing": "enabled",
18+
"includePaths": [
19+
"library/**",
20+
"src/bootstrap/Cargo.toml",
21+
"src/tools/rustbook/Cargo.toml"
22+
],
23+
"packageRules": [
24+
{
25+
"matchFileNames": [
26+
"library/Cargo.toml"
27+
],
28+
"enabled": true,
29+
"groupName": "library Cargo.lock"
30+
},
31+
{
32+
"matchFileNames": [
33+
"src/bootstrap/Cargo.toml"
34+
],
35+
"enabled": true,
36+
"groupName": "bootstrap Cargo.lock"
37+
},
38+
{
39+
"matchFileNames": [
40+
"src/tools/rustbook/Cargo.toml"
41+
],
42+
"enabled": true,
43+
"groupName": "rustbook Cargo.lock"
44+
}
45+
],
46+
"rangeStrategy": "in-range-only",
47+
"lockFileMaintenance": {
48+
"enabled": true,
49+
"schedule": "at any time"
50+
}
4151
}

0 commit comments

Comments
 (0)