Skip to content

Commit 0974ed8

Browse files
Merge pull request #15 from DanielVoogsgerd/renovate/configure
chore: Configure Renovate
2 parents 96ee19d + c5c31ff commit 0974ed8

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

renovate.json5

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": [
4+
"config:recommended",
5+
":semanticCommitTypeAll(chore)",
6+
"schedule:earlyMondays",
7+
],
8+
"labels": ["C-Dependencies"],
9+
"prConcurrentLimit": 5,
10+
"prHourlyLimit": 5,
11+
"vulnerabilityAlerts": {
12+
"addLabels": ["P-Critical", "C-Security"],
13+
"assignees": ["@DanielVoogsgerd"]
14+
},
15+
// "lockFileMaintenance": { "enabled": true },
16+
"packageRules": [
17+
{
18+
"matchUpdateTypes": ["minor"],
19+
"matchManagers": ["cargo"],
20+
"matchCurrentValue": "!/^v?0\\./",
21+
"groupName": "all non-major dependencies (exclude 0.x.y)",
22+
"groupSlug": "all-minor-patch-semver",
23+
"prPriority": 9,
24+
},
25+
{
26+
"matchUpdateTypes": ["patch"],
27+
"matchManagers": ["cargo"],
28+
"matchCurrentValue": "!/^v?0\\.0\\./",
29+
"groupName": "all non-major dependencies (exclude 0.x.y)",
30+
"groupSlug": "all-minor-patch-semver",
31+
"prPriority": 9,
32+
},
33+
{
34+
"matchManagers": ["github-actions"],
35+
"addLabels": ["A-CI", "A-CD"],
36+
}
37+
]
38+
}

0 commit comments

Comments
 (0)