File tree Expand file tree Collapse file tree 1 file changed +45
-5
lines changed Expand file tree Collapse file tree 1 file changed +45
-5
lines changed Original file line number Diff line number Diff line change 1
1
{
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
+ }
You can’t perform that action at this time.
0 commit comments