-
Notifications
You must be signed in to change notification settings - Fork 255
Expand file tree
/
Copy pathrenovate.json
More file actions
185 lines (185 loc) · 4.23 KB
/
Copy pathrenovate.json
File metadata and controls
185 lines (185 loc) · 4.23 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
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":gitSignOff"
],
"enabledManagers": [
"custom.regex",
"gomod",
"tekton",
"dockerfile"
],
"commitMessagePrefix": "OCM-00000 | ci: ",
"prConcurrentLimit": 10,
"prHourlyLimit": 0,
"dependencyDashboard": true,
"minimumReleaseAge": "3 days",
"vulnerabilityAlerts": {
"enabled": false
},
"labels": [
"ok-to-test"
],
"tekton": {
"schedule": [
"at any time"
]
},
"dockerfile": {
"managerFilePatterns": [
"/^Dockerfile$/",
"/^Dockerfile\\.clients$/",
"/^images/Dockerfile\\.e2e$/",
"/^images/Dockerfile\\.release$/",
"/^images/Dockerfile\\.konflux$/"
]
},
"gomod": {
"constraints": {
"go": "1.26.5"
},
"postUpdateOptions": ["gomodUpdateImportPaths"],
"packageRules": [
{
"matchManagers": [
"gomod"
],
"matchDepTypes": [
"indirect"
],
"enabled": false
}
]
},
"customManagers": [
{
"description": "Update jq bootstrap in hack/govulncheck.sh",
"customType": "regex",
"managerFilePatterns": [
"/^hack/govulncheck\\.sh$/"
],
"matchStrings": [
"# renovate: datasource=(?<datasource>github-releases) depName=(?<depName>jqlang/jq)(?: extractVersion=(?<extractVersion>[^\\s]+))?\\s+readonly jq_version=\"(?<currentValue>[^\"]+)\""
],
"datasourceTemplate": "{{datasource}}",
"depNameTemplate": "{{depName}}",
"extractVersionTemplate": "{{extractVersion}}"
}
],
"packageRules": [
{
"description": "govulncheck jq bootstrap",
"matchManagers": [
"custom.regex"
],
"matchDepNames": [
"jqlang/jq"
],
"groupName": "govulncheck-jq"
},
{
"description": "Enable automerge Konflux .tekton task updates",
"matchManagers": [
"tekton"
],
"matchFileNames": [
".tekton/**/*.yaml",
".tekton/**/*.yml"
],
"automerge": true
},
{
"description": "Do not bump Go toolchain minor/major versions",
"matchManagers": [
"gomod"
],
"matchDatasources": [
"golang-version"
],
"matchDepTypes": [
"toolchain"
],
"matchUpdateTypes": [
"minor",
"major"
],
"enabled": false
},
{
"description": "Bingo-managed tools (.bingo) are updated manually. Renovate does not provide a way to run the bingo command as expected by bingo's implementation, so automated .bingo updates are disabled for now.",
"matchFileNames": [
".bingo/**"
],
"enabled": false
},
{
"description": "AWS SDK v2 and smithy",
"groupName": "aws-sdk",
"matchManagers": [
"gomod"
],
"matchPackageNames": [
"github.com/aws/{/,}**"
]
},
{
"description": "OpenShift OCM libraries",
"groupName": "openshift-ocm",
"matchManagers": [
"gomod"
],
"matchPackageNames": [
"github.com/openshift-online/{/,}**"
]
},
{
"description": "Cobra CLI stack",
"groupName": "spf13-cli",
"matchManagers": [
"gomod"
],
"matchPackageNames": [
"github.com/spf13/{/,}**"
]
},
{
"description": "Kubernetes client libraries",
"groupName": "kubernetes",
"matchManagers": [
"gomod"
],
"matchPackageNames": [
"k8s.io/{/,}**",
"sigs.k8s.io/{/,}**"
]
},
{
"description": "Test and generator stack",
"groupName": "testing",
"matchManagers": [
"gomod"
],
"matchPackageNames": [
"github.com/onsi/{/,}**",
"go.uber.org/{/,}**"
]
},
{
"description": "CLI helper libraries",
"groupName": "helpers",
"matchManagers": [
"gomod"
],
"matchPackageNames": [
"github.com/AlecAivazis/survey/v2",
"github.com/Masterminds/semver",
"github.com/pkg/errors",
"github.com/sirupsen/logrus",
"github.com/zgalor/weberr",
"gopkg.in/yaml.v2",
"gopkg.in/yaml.v3"
]
}
]
}