forked from containerbase/base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json
172 lines (172 loc) · 4.44 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"github>containerbase/.github",
"github>containerbase/.github//merge-queue.json"
],
"ignorePaths": ["**/node_modules/**", "test/*/test/**"],
"enabledManagers": ["npm"],
"separateMultipleMajor": false,
"separateMajorMinor": true,
"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/**"],
"matchPackageNames": [
"bazelisk",
"bun",
"bundler",
"corepack",
"docker",
"dotnet",
"git",
"git-lfs",
"gradle",
"kustomize",
"hashin",
"helm",
"helmfile",
"nix",
"node",
"npm",
"pdm",
"pipenv",
"poetry",
"pnpm",
"rake",
"renovate",
"rust",
"swift",
"vendir"
],
"separateMinorPatch": false
},
{
"description": "Automerge test selected minor updates in tests",
"matchPaths": ["test/**"],
"matchPackageNames": [
"bazelisk",
"bun",
"bundler",
"corepack",
"docker",
"dotnet",
"git",
"git-lfs",
"gradle",
"kustomize",
"hashin",
"helm",
"helmfile",
"nix",
"node",
"npm",
"pdm",
"pipenv",
"poetry",
"pnpm",
"rake",
"renovate",
"rust",
"swift",
"vendir"
],
"matchUpdateTypes": ["minor", "patch"],
"automerge": true
},
{
"description": "Trigger fix release for git updates",
"matchPackageNames": ["git"],
"semanticCommitType": "fix",
"stabilityDays": 5
},
{
"description": "Trigger fix release for ubuntu digest updates",
"matchPackageNames": ["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/**"],
"additionalBranchPrefix": "test-",
"semanticCommitType": "test"
},
{
"description": "Use `test-major-` additionalBranchPrefix for test/ major updates",
"matchPaths": ["test/**"],
"matchUpdateTypes": ["major"],
"additionalBranchPrefix": "test-major-"
},
{
"description": "Update some deps only weekly",
"matchPackageNames": ["checkov", "renovate"],
"extends": ["schedule:weekly"],
"automerge": true
},
{
"description": "No automerge",
"matchFiles": ["package.json"],
"automerge": false
}
],
"customManagers": [
{
"customType": "regex",
"fileMatch": ["^package\\.json$"],
"matchStrings": [
"\"(?<depName>@yao-pkg/pkg|clipanion)@(?<currentValue>\\d+\\.\\d+\\.\\d+)\":"
],
"datasourceTemplate": "npm"
}
]
}