Skip to content

Commit 032d8ed

Browse files
authored
Update renovate.json
1 parent 3d9de09 commit 032d8ed

File tree

1 file changed

+45
-5
lines changed

1 file changed

+45
-5
lines changed

renovate.json

Lines changed: 45 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,46 @@
11
{
2-
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3-
"extends": [
4-
"config:recommended"
5-
]
6-
}
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": [
4+
"config:recommended"
5+
],
6+
"packageRules": [
7+
{
8+
"description": "Automatically merge minor and patch-level updates",
9+
"matchUpdateTypes": [
10+
"patch",
11+
"bump",
12+
"minor"
13+
],
14+
"automerge": true,
15+
"automergeType": "branch"
16+
},
17+
{
18+
"description": "Automatically merge updates to GitHub workflows",
19+
"matchUpdateTypes": [
20+
"patch",
21+
"bump",
22+
"minor",
23+
"major"
24+
],
25+
"automerge": true,
26+
"matchFileNames": [
27+
".github/**",
28+
".github/workflows/**"
29+
],
30+
"automergeType": "branch"
31+
},
32+
{
33+
"description": "Request review for major updates",
34+
"matchUpdateTypes": [
35+
"major"
36+
],
37+
"automerge": false,
38+
"labels": [
39+
"update/major"
40+
],
41+
"assignees": [
42+
"cedi"
43+
]
44+
}
45+
]
46+
}

0 commit comments

Comments
 (0)