Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 44ed3b6

Browse files
committedSep 26, 2024··
chore: すべての依存をRenovateの対象にする
1 parent 8d603d9 commit 44ed3b6

File tree

1 file changed

+49
-12
lines changed

1 file changed

+49
-12
lines changed
 

‎renovate.json

+49-12
Original file line numberDiff line numberDiff line change
@@ -4,26 +4,63 @@
44
"config:recommended"
55
],
66
"timezone": "Asia/Tokyo",
7+
"separateMajorMinor": false,
8+
"dependencyDashboardApproval": true,
79
"packageRules": [
810
{
9-
"groupSlug": "rust",
10-
"groupName": "Rust",
11-
"matchPackagePatterns": [
12-
"^rust-lang/rust$"
13-
]
11+
"groupName": "major dependencies",
12+
"matchUpdateTypes": [
13+
"major"
14+
],
15+
"dependencyDashboardApproval": false
16+
},
17+
{
18+
"groupName": "major dependencies",
19+
"matchUpdateTypes": [
20+
"minor"
21+
],
22+
"matchCurrentVersion": "0",
23+
"dependencyDashboardApproval": false
24+
},
25+
{
26+
"groupName": "major dependencies",
27+
"matchUpdateTypes": [
28+
"patch"
29+
],
30+
"matchCurrentVersion": "0.0",
31+
"dependencyDashboardApproval": false
32+
},
33+
{
34+
"groupName": "non-major dependencies",
35+
"matchUpdateTypes": [
36+
"minor"
37+
],
38+
"matchCurrentVersion": "!/^0\\./",
39+
"dependencyDashboardApproval": false
40+
},
41+
{
42+
"groupName": "non-major dependencies",
43+
"matchUpdateTypes": [
44+
"patch"
45+
],
46+
"matchCurrentVersion": "!/^0\\.0\\./",
47+
"dependencyDashboardApproval": false
1448
},
1549
{
16-
"groupSlug": "others",
17-
"groupName": "Others",
18-
"matchPackagePatterns": [
19-
"*"
50+
"matchDatasources": [
51+
"github-runners"
2052
],
21-
"excludePackagePatterns": [
22-
"^rust-lang/rust$"
53+
"matchPackageNames": [
54+
"windows",
55+
"macos",
56+
"ubuntu"
2357
],
24-
"dependencyDashboardApproval": true
58+
"enabled": false
2559
}
2660
],
61+
"cargo": {
62+
"rangeStrategy": "bump"
63+
},
2764
"customManagers": [
2865
{
2966
"customType": "regex",

0 commit comments

Comments
 (0)
Please sign in to comment.