-
Notifications
You must be signed in to change notification settings - Fork 41
/
renovate.json
195 lines (195 loc) · 5.11 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"github>containerbase/.github",
"github>containerbase/.github//merge-queue.json"
],
"ignorePaths": ["**/node_modules/**", "test/*/test/**"],
"enabledManagers": ["dockerfile", "github-actions", "nodenv", "npm", "regex"],
"separateMultipleMajor": false,
"separateMajorMinor": true,
"baseBranches": ["$default", "/^maint/.+/"],
"packageRules": [
{
"description": "Don't hold back any PRs for approval",
"matchPackagePatterns": ["*"],
"dependencyDashboardApproval": false
},
{
"description": "Hold back npm major updates in root package.json",
"matchUpdateTypes": ["major"],
"matchFiles": ["package.json"],
"dependencyDashboardApproval": true
},
{
"description": "Disable all managers in test/ by default",
"matchPaths": ["test/**"],
"enabled": false
},
{
"description": "Enable the regex manager only for test/",
"matchPaths": ["test/**"],
"matchManagers": ["regex"],
"enabled": true
},
{
"description": "Disable pin digest for test/",
"matchPaths": ["test/**"],
"matchUpdateTypes": ["pinDigest"],
"enabled": false
},
{
"description": "Separate patch updates in test/ so that we can automerge them",
"matchPaths": ["test/**"],
"separateMinorPatch": true
},
{
"description": "Don't automerge test minor/major because we might want to retain old versions in tests too",
"matchPaths": ["test/**"],
"matchUpdateTypes": ["minor", "major"],
"automerge": false
},
{
"description": "Don't separate minor and patch updates in tests",
"matchPaths": ["test/**"],
"matchDepNames": [
"bazelisk",
"bun",
"bundler",
"conan",
"copier",
"corepack",
"docker",
"dotnet",
"git",
"git-lfs",
"gleam",
"gradle",
"kustomize",
"hashin",
"helm",
"helmfile",
"nix",
"node",
"npm",
"pdm",
"pipenv",
"poetry",
"pnpm",
"rake",
"renovate",
"rust",
"sbt",
"sops",
"swift",
"uv",
"vendir"
],
"separateMinorPatch": false
},
{
"description": "Automerge test selected minor updates in tests",
"matchPaths": ["test/**"],
"matchDepNames": [
"bazelisk",
"bun",
"bundler",
"corepack",
"conan",
"copier",
"docker",
"dotnet",
"git",
"git-lfs",
"gleam",
"gradle",
"kustomize",
"hashin",
"helm",
"helmfile",
"nix",
"node",
"npm",
"pdm",
"pipenv",
"poetry",
"pnpm",
"rake",
"renovate",
"rust",
"sbt",
"sops",
"swift",
"uv",
"vendir"
],
"matchUpdateTypes": ["minor", "patch"],
"automerge": true
},
{
"description": "Trigger fix release for git updates",
"matchDepNames": ["git"],
"semanticCommitType": "fix",
"stabilityDays": 5
},
{
"description": "Trigger fix release for ubuntu digest updates",
"matchDepNames": ["ubuntu", "ghcr.io/containerbase/ubuntu"],
"matchUpdateTypes": ["digest"],
"semanticCommitType": "fix"
},
{
"description": "Use `build` semantic commit scope for build deps",
"matchDepNames": ["@yao-pkg/pkg"],
"semanticCommitType": "build"
},
{
"description": "Use `chore` semantic commit scope for Actions updates",
"matchManagers": ["github-actions"],
"semanticCommitType": "chore"
},
{
"description": "Use `test` semantic commit scope and additionalBranchPrefix for test/",
"matchPaths": ["test/**"],
"matchDepNames": ["!git"],
"additionalBranchPrefix": "test-",
"semanticCommitType": "test"
},
{
"description": "Use `test-major-` additionalBranchPrefix for test/ major updates",
"matchPaths": ["test/**"],
"matchUpdateTypes": ["major"],
"matchDepNames": ["!git"],
"additionalBranchPrefix": "test-major-"
},
{
"description": "Update some deps only weekly",
"matchDepNames": ["checkov", "renovate"],
"extends": ["schedule:weekly"],
"automerge": true
},
{
"description": "Use branch merge for maintenace branches",
"matchBaseBranches": ["/^maint/.+/"],
"automergeType": "branch",
"prCreation": "not-pending",
"rebaseWhen": "auto"
},
{
"description": "Require approval for maintenace branches test deps",
"matchBaseBranches": ["/^maint/.+/"],
"matchFileNames": ["test/**"],
"dependencyDashboardApproval": true
}
],
"customManagers": [
{
"customType": "regex",
"fileMatch": ["^package\\.json$"],
"matchStrings": [
"\"(?<depName>@yao-pkg/pkg|clipanion)@(?<currentValue>\\d+\\.\\d+\\.\\d+)\":"
],
"datasourceTemplate": "npm"
}
]
}