forked from banzaicloud/koperator
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathrenovate.json
More file actions
157 lines (157 loc) · 4.17 KB
/
renovate.json
File metadata and controls
157 lines (157 loc) · 4.17 KB
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"forkProcessing": "enabled",
"extends": [
":dependencyDashboard",
":ignoreUnstable",
":prImmediately",
":semanticPrefixFixDepsChoreOthers",
":updateNotScheduled",
":automergeDisabled",
"helpers:disableTypesNodeMajor",
":prHourlyLimitNone",
":prConcurrentLimitNone",
"docker:enableMajor",
"group:allDigest"
],
"customManagers": [
{
"customType": "regex",
"managerFilePatterns": [
"/(^|/)Makefile$/",
"/(^|/)Dockerfile$/"
],
"matchStrings": [
"(?<depName>[A-Z][A-Z0-9_]*)_VERSION\\s*=\\s*(?<currentValue>[^\\s]+)\\s*#\\s*renovate:\\s*datasource=(?<datasource>[^\\s]+)\\s*depName=(?<packageName>[^\\s]+)(?:\\s*extractVersion=(?<extractVersion>[^\\s]+))?"
],
"datasourceTemplate": "{{datasource}}",
"depNameTemplate": "{{packageName}}",
"extractVersionTemplate": "{{#if extractVersion}}{{{extractVersion}}}{{/if}}"
},
{
"customType": "regex",
"managerFilePatterns": [
"/tests/e2e/versions\\.go$/"
],
"matchStrings": [
"\\s*(?<depName>\\w+)\\s*=\\s*\"(?<currentValue>[^\"]+)\"\\s*//\\s*renovate:\\s*datasource=(?<datasource>[^\\s]+)\\s*depName=(?<packageName>[^\\s]+)\\s*registryUrl=(?<registryUrl>\\S+)"
],
"datasourceTemplate": "{{datasource}}",
"depNameTemplate": "{{packageName}}",
"registryUrlTemplate": "{{registryUrl}}"
},
{
"customType": "regex",
"managerFilePatterns": [
"/api/v1beta1/kafkacluster_types\\.go$/"
],
"matchStrings": [
"(?<depName>\\w+)\\s*=\\s*\"[^:]+:(?<currentValue>[^\"]+)\"\\s*//\\s*renovate:\\s*datasource=(?<datasource>\\w+)\\s*depName=(?<packageName>[^\\s]+)"
],
"datasourceTemplate": "{{datasource}}",
"depNameTemplate": "{{packageName}}"
}
],
"packageRules": [
{
"matchManagers": [
"gomod"
],
"enabled": false,
"description": "Disable Go module updates - handled by automated workflow: .github/workflows/update-go-deps.yml"
},
{
"matchCategories": [
"docker"
],
"pinDigests": true
},
{
"groupName": "config samples docker images",
"groupSlug": "config-samples-docker",
"matchFileNames": [
"config/samples/**",
"docs/benchmarks/infrastructure/**",
"tests/e2e/templates/**"
],
"matchManagers": [
"helm-values"
],
"matchUpdateTypes": [
"major",
"minor",
"patch"
]
},
{
"groupName": "kafka docker images (major)",
"groupSlug": "kafka-docker-major",
"matchFileNames": [
"docker/**"
],
"matchManagers": [
"dockerfile",
"custom.regex"
],
"matchUpdateTypes": [
"major"
]
},
{
"groupName": "kafka docker images (minor/patch)",
"groupSlug": "kafka-docker-minor-patch",
"matchFileNames": [
"docker/**"
],
"matchManagers": [
"dockerfile",
"custom.regex"
],
"matchUpdateTypes": [
"minor",
"patch"
]
},
{
"groupName": "all major dependencies",
"groupSlug": "all-major",
"matchUpdateTypes": [
"major"
],
"matchManagers": [
"github-actions",
"maven",
"dockerfile",
"docker-compose",
"custom.regex",
"helm-values"
],
"commitMessagePrefix": "chore(deps):",
"commitMessageAction": "update",
"commitMessageTopic": "all major dependencies",
"commitMessageExtra": ""
},
{
"groupName": "all non-major dependencies",
"groupSlug": "all-minor-patch",
"matchUpdateTypes": [
"minor",
"patch",
"digest"
],
"matchManagers": [
"github-actions",
"maven",
"dockerfile",
"docker-compose",
"custom.regex",
"helm-values",
"docker"
],
"commitMessagePrefix": "chore(deps):",
"commitMessageAction": "update",
"commitMessageTopic": "all non-major dependencies",
"commitMessageExtra": ""
}
]
}