Skip to content

Commit 2b927fd

Browse files
authored
Merge pull request #97 from Atypical-Consulting/chore/standardize-renovate-config
chore: add standardized renovate config
2 parents 83a2cce + 40c768e commit 2b927fd

File tree

1 file changed

+37
-2
lines changed

1 file changed

+37
-2
lines changed

renovate.json

Lines changed: 37 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,49 @@
33
"extends": [
44
"config:recommended"
55
],
6+
"baseBranchPatterns": [
7+
"dev"
8+
],
9+
"schedule": [
10+
"before 9am on Saturday"
11+
],
12+
"timezone": "Europe/Brussels",
13+
"labels": [
14+
"dependencies",
15+
"renovate"
16+
],
617
"packageRules": [
718
{
19+
"description": "Automerge minor and patch updates",
820
"matchUpdateTypes": [
921
"minor",
1022
"patch"
1123
],
12-
"automerge": true
24+
"automerge": true,
25+
"automergeType": "pr"
26+
},
27+
{
28+
"description": "Group all NuGet minor/patch updates together",
29+
"matchManagers": [
30+
"nuget"
31+
],
32+
"matchUpdateTypes": [
33+
"minor",
34+
"patch"
35+
],
36+
"groupName": "NuGet minor/patch updates"
37+
},
38+
{
39+
"description": "Group all NuGet major updates together",
40+
"matchManagers": [
41+
"nuget"
42+
],
43+
"matchUpdateTypes": [
44+
"major"
45+
],
46+
"groupName": "NuGet major updates",
47+
"dependencyDashboardApproval": true
1348
}
1449
],
1550
"platformAutomerge": true
16-
}
51+
}

0 commit comments

Comments
 (0)