Skip to content

Commit 37b5dbe

Browse files
committed
WIP
1 parent e9a2f59 commit 37b5dbe

File tree

1 file changed

+51
-0
lines changed

1 file changed

+51
-0
lines changed

.github/renovate.json5

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
{
2+
$schema: "https://docs.renovatebot.com/renovate-schema.json",
3+
"dependencyDashboard": true,
4+
"schedule": [
5+
"before 5am on Monday"
6+
],
7+
"rust": {
8+
"enabled": true,
9+
"fileMatch": [
10+
"Cargo.lock"
11+
],
12+
"packageRules": [
13+
{
14+
"matchPackageNames": [
15+
"*"
16+
],
17+
"groupName": "Rust Dependencies",
18+
"groupSlug": "rust-deps",
19+
"schedule": [
20+
"before 5am on Monday"
21+
]
22+
}
23+
]
24+
}
25+
// extends: [
26+
// "config:recommended",
27+
// ":maintainLockFilesWeekly",
28+
// "docker:disable",
29+
// ],
30+
// packageRules: [
31+
// {
32+
// matchCategories: [
33+
// "rust"
34+
// ],
35+
// updateTypes: [
36+
// "patch"
37+
// ],
38+
// Disable patch updates for single dependencies because patches
39+
// are updated periodically with lockfile maintainance.
40+
// enabled: false,
41+
// },
42+
// ],
43+
// Receive any update that fixes security vulnerabilities.
44+
// We need this because we disabled "patch" updates for Rust.
45+
// Note: You need to enable "Dependabot alerts" in "Code security" GitHub
46+
// Settings to receive security updates.
47+
// See https://docs.renovatebot.com/configuration-options/#vulnerabilityalerts
48+
// vulnerabilityAlerts: {
49+
// enabled: true,
50+
// },
51+
}

0 commit comments

Comments
 (0)