-
Notifications
You must be signed in to change notification settings - Fork 249
Expand file tree
/
Copy pathrenovate.json
More file actions
169 lines (169 loc) · 3.46 KB
/
Copy pathrenovate.json
File metadata and controls
169 lines (169 loc) · 3.46 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":gitSignOff"
],
"enabledManagers": [
"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"
]
},
"gomod": {
"constraints": {
"go": "1.25.8"
},
"managerFilePatterns": [
"/(^|/)\\.bingo/[^/]+\\.mod$/"
],
"postUpdateOptions": [
"gomodUpdateImportPaths",
"gomodTidy"
],
"packageRules": [
{
"matchManagers": [
"gomod"
],
"matchDepTypes": [
"indirect"
],
"enabled": false
}
]
},
"packageRules": [
{
"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": "Group Bingo-managed tool modules",
"groupName": "bingo-tooling",
"matchManagers": [
"gomod"
],
"matchFileNames": [
".bingo/*.mod"
]
},
{
"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": "Pin k8s.io/apimachinery below the Go 1.26-only line",
"matchManagers": [
"gomod"
],
"matchPackageNames": [
"k8s.io/apimachinery"
],
"allowedVersions": "< 0.36.0"
},
{
"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"
]
}
]
}