-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathrenovate.json
More file actions
97 lines (97 loc) · 3.21 KB
/
renovate.json
File metadata and controls
97 lines (97 loc) · 3.21 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended", "schedule:weekly"],
"dependencyDashboard": true,
"prConcurrentLimit": 20,
"prHourlyLimit": 200,
"labels": ["dependencies"],
"lockFileMaintenance": {
"enabled": true,
"recreateWhen": "always",
"rebaseWhen": "behind-base-branch",
"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"
},
{
"description": "IGNORE: Windows 0.59 is pending on https://github.com/gfx-rs/wgpu/pull/6876",
"matchPackageNames": ["windows", "windows-core"],
"matchCurrentVersion": "<0.59.0",
"enabled": false
},
{
"description": "IGNORE: Winit 0.30 is pending a major refactor. https://github.com/gfx-rs/wgpu/pull/5709",
"matchPackageNames": ["winit"],
"matchCurrentVersion": "<0.30.0",
"enabled": false
},
{
"description": "IGNORE: glutin 0.32 depends on winit 0.30",
"matchPackageNames": ["glutin"],
"matchCurrentVersion": "<0.32.0",
"enabled": false
},
{
"description": "IGNORE: glutin-winit 0.5 depends on winit 0.30",
"matchPackageNames": ["glutin-winit"],
"matchCurrentVersion": "<0.5.0",
"enabled": false
},
{
"description": "IGNORE: glutin 0.32 depends on winit 0.30, and previous version depend on rwh 0.5",
"matchPackageNames": ["raw-window-handle"],
"matchCurrentVersion": "<0.6.0",
"enabled": false
},
{
"description": "IGNORE: libfuzzer-sys 0.4.8 has a broken build on Windows.",
"matchPackageNames": ["libfuzzer-sys"],
"matchCurrentVersion": "<0.5.0",
"enabled": false
},
{
"description": "PERMA IGNORE: rustc-hash 2.0 is a different algorithm.",
"matchPackageNames": ["rustc-hash"],
"matchCurrentVersion": "<2",
"enabled": false
},
{
"description": "PERMA IGNORE: Deno packages are rolled up explicitly by the Deno team, in lockstep with deno_webgpu.",
"matchPackageNames": ["deno_*"],
"enabled": false
},
{
"description": "CTS revision is pinned to a Git SHA.",
"matchPackageNames": ["https://github.com/gpuweb/cts"],
"changelogUrl": "https://github.com/gpuweb/cts/commits/main",
"versioning": "git"
}
],
"customManagers": [
{
"customType": "regex",
"managerFilePatterns": ["/^cts_runner\\/revision\\.txt$/"],
"matchStrings": ["(?<currentDigest>.{40})"],
"currentValueTemplate": "gh-pages",
"depNameTemplate": "cts",
"packageNameTemplate": "https://github.com/gpuweb/cts",
"datasourceTemplate": "git-refs"
}
]
}