-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathrenovate.json
58 lines (58 loc) · 2 KB
/
renovate.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"github>renovatebot/.github",
"github>renovatebot/.github//merge-queue.json"
],
"baseBranches": ["$default", "zzz/don-not-delete"],
"packageRules": [
{
"description": "Use `ci` semantic commit scope for ci deps",
"matchFileNames": [".github/{actions/**,workflows}/*.yml"],
"semanticCommitType": "ci",
"additionalBranchPrefix": "ci-"
},
{
"description": "Use `fix` semantic commit scope for docker image deps",
"matchFileNames": ["Dockerfile"],
"semanticCommitType": "fix",
"additionalBranchPrefix": "deps-"
},
{
"description": "Use `feat` semantic commit scope for docker image deps minor updates",
"matchFileNames": ["Dockerfile"],
"matchUpdateTypes": ["minor"],
"semanticCommitType": "feat"
},
{
"description": "Use `feat` semantic commit scope with breaking change for docker image deps major updates",
"matchFileNames": ["Dockerfile"],
"matchUpdateTypes": ["major"],
"commitMessagePrefix": "feat(deps)!:",
"addLabels": ["breaking"],
"dependencyDashboardApproval": false
},
{
"description": "Use `feat` semantic commit scope with breaking change for some minor updates",
"matchFileNames": ["Dockerfile"],
"matchUpdateTypes": ["minor"],
"matchDepNames": ["php", "python", "ruby"],
"commitMessagePrefix": "feat(deps)!:",
"addLabels": ["breaking"],
"automerge": false
},
{
"description": "Require approval for major updates for `maint` branches",
"matchBaseBranches": ["/^maint/.+/"],
"matchUpdateTypes": ["major"],
"dependencyDashboardApproval": true
},
{
"description": "Require approval for some minor updates for `maint` branches",
"matchBaseBranches": ["/^maint/.+/"],
"matchUpdateTypes": ["minor"],
"matchDepNames": ["php", "python", "ruby"],
"dependencyDashboardApproval": true
}
]
}