-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathrenovate.json
More file actions
22 lines (22 loc) · 707 Bytes
/
renovate.json
File metadata and controls
22 lines (22 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended", "schedule:weekly"],
"dependencyDashboard": true,
"prConcurrentLimit": 20,
"prHourlyLimit": 200,
"labels": ["dependencies"],
"packageRules": [
{
"matchUpdateTypes": ["patch"],
"matchCurrentVersion": "<1.0.0",
"groupName": "Minor Updates",
"description": "Patch updates to 0.x.y crates are treated as compatible by cargo"
},
{
"matchUpdateTypes": ["minor", "patch"],
"matchCurrentVersion": ">=1.0.0",
"groupName": "Minor Updates",
"description": "Minor and patch updates to x.y.z crates are treated as compatible by cargo"
}
]
}