-
Notifications
You must be signed in to change notification settings - Fork 34
/
renovate.json
80 lines (80 loc) · 2.07 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"stopUpdatingLabel": "take-a-break-renovate",
"schedule": [
"after 07:30am",
"before 07:15pm",
"every weekday"
],
"prHourlyLimit": 1,
"prConcurrentLimit": 0,
"timezone": "Europe/Berlin",
"extends": [
"config:best-practices",
"group:kubernetes",
"group:goOpenapi",
"security:openssf-scorecard",
":dependencyDashboard"
],
"packageRules": [
{
"description": "Fixed version for component-cli v0.44.0",
"matchManagers": [
"gomod"
],
"enabled": false,
"matchPackageNames": [
"/github.com/gardener/component-cli/"
]
},
{
"description": "Ignore version for landscpaer/apis and controller-utils as used locally",
"matchManagers": [
"gomod"
],
"enabled": false,
"matchPackageNames": [
"/github.com/gardener/landscaper/.*/"
]
},
{
"description": "Combine all patch updates in GO in a single PR",
"groupName": "all patch dependencies",
"groupSlug": "all-patch",
"matchPackageNames": [
"*"
],
"matchDatasources": [
"go"
],
"matchUpdateTypes": [
"patch",
"digest"
],
"rebaseWhen": "auto"
},
{
"matchUpdateTypes": [
"minor",
"patch",
"pin",
"digest"
],
"rebaseWhen": "auto"
}
],
"customManagers": [
{
"description": "Match in Makefile and Dockerfile",
"customType": "regex",
"fileMatch": [
"(^|/|\\.)([Dd]ocker|[Cc]ontainer)file$",
"(^|/)([Dd]ocker|[Cc]ontainer)file[^/]*$",
"(^|/)Makefile$"
],
"matchStrings": [
"# renovate: datasource=(?<datasource>[a-z-.]+?) depName=(?<depName>[^\\s]+?)(?: (lookupName|packageName)=(?<packageName>[^\\s]+?))?(?: versioning=(?<versioning>[^\\s]+?))?(?: extractVersion=(?<extractVersion>[^\\s]+?))?(?: registryUrl=(?<registryUrl>[^\\s]+?))?\\s(?:ENV |ARG )?.+?_VERSION ?(?:\\?=|=)\"? ?(?<currentValue>.+?)\"?\\s"
]
}
]
}