forked from gfx-rs/wgpu-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
34 lines (34 loc) · 1.03 KB
/
renovate.json
File metadata and controls
34 lines (34 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended", "schedule:weekly"],
"dependencyDashboard": true,
"prConcurrentLimit": 20,
"prHourlyLimit": 200,
"configMigration": true,
"labels": ["dependencies"],
"lockFileMaintenance": {
"enabled": true,
"recreateWhen": "always",
"rebaseWhen": "conflicted",
"branchTopic": "Cargo.lock update",
"commitMessageAction": "Update Cargo.lock",
"schedule": ["before 4am on monday"],
"prBodyDefinitions": {
"Change": "All locks refreshed"
}
},
"packageRules": [
{
"matchUpdateTypes": ["patch"],
"matchCurrentVersion": "<1.0.0",
"enabled": false,
"description": "Patch updates to 0.x.y crates are compatible and handled by lockFileMaintenance"
},
{
"matchUpdateTypes": ["minor", "patch"],
"matchCurrentVersion": ">=1.0.0",
"enabled": false,
"description": "Minor and patch updates to x.y.z crates are compatible and handled by lockFileMaintenance"
}
]
}