-
Notifications
You must be signed in to change notification settings - Fork 34
/
renovate.json
73 lines (73 loc) · 1.89 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"configMigration": true,
"schedule": [
"after 10:30am",
"before 03:30pm",
"every weekday"
],
"prHourlyLimit": 1,
"prConcurrentLimit": 2,
"timezone": "Europe/Berlin",
"extends": [
"config:best-practices",
"group:kubernetes",
"group:goOpenapi",
"security:openssf-scorecard",
":dependencyDashboard"
],
"packageRules": [
{
"description": "Combine landscaper updates in a single PR",
"matchManagers": [
"gomod"
],
"matchSourceUrls": [
"https://github.com/gardener/landscaper"
]
},
{
"matchUpdateTypes": [
"minor",
"patch",
"pin",
"digest"
],
"rebaseWhen": "auto"
},
{
"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/.*/"
]
}
],
"customManagers": [
{
"description": "Match in Makefile",
"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"
]
}
]
}