-
Notifications
You must be signed in to change notification settings - Fork 123
/
renovate.json
117 lines (117 loc) · 2.95 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
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":gitSignOff",
"schedule:nonOfficeHours",
":semanticCommitTypeAll(deps)",
":semanticCommitScope()",
"group:monorepos",
"group:kubernetes",
":automergePatch"
],
"addLabels": ["dependencies"],
"cloneSubmodules": true,
"prConcurrentLimit": 15,
"minimumReleaseAge": "3 days",
"timezone": "Europe/Vienna",
"rebaseWhen": "conflicted",
"postUpdateOptions": [
"gomodTidy",
"gomodMassage"
],
"ignorePaths": [
"**/test/**",
"**/tests/**"
],
"packageRules": [
{
"matchPackageNames": [
"!/docker.io\\/thschue\\/.*/",
"!/docker.io\\/annadreal\\/.*/",
"!/docker.io\\/bacherfl\\/.*/",
"!/docker.io\\/mowies\\/.*/",
"!/docker.io\\/odubajdt\\/.*/",
"!/docker.io\\/thisthatdc\\/.*/",
"!/testreg\\/.*/",
"!/myrep/"
]
},
{
"matchManagers": ["gomod"],
"addLabels": ["go"]
},
{
"matchManagers": ["github-actions"],
"addLabels": ["github_actions"],
"groupName": "github actions",
"groupSlug": "github-actions"
},
{
"matchManagers": ["dockerfile"],
"addLabels": ["docker"]
},
{
"matchPackageNames": ["kubernetes-sigs/kustomize"],
"extractVersion": "^kustomize/(?<version>.*)$"
},
{
"matchPackageNames": ["ghcr.io/podtato-head/**"],
"groupName": "podtato-head"
},
{
"matchPackageNames": ["denoland/deno"],
"versioning": "regex:^(?<compatibility>[a-z]+?)-(?<major>\\d+)(\\.(?<minor>\\d+))?(\\.(?<patch>\\d+))?$"
},
{
"matchPackageNames": [
"ghcr.io/keptn/certificate-operator",
"github.com/keptn/lifecycle-toolkit/keptn-cert-manager"
],
"groupName": "keptn/cert-manager"
},
{
"matchPackageNames": [
"squidfunk/mkdocs-material",
"mkdocs-material"
],
"groupName": "squidfunk/mkdocs-material"
},
{
"matchManagers": ["gomod"],
"groupName": "All golang.org/x packages",
"matchPackageNames": ["golang.org/x{/,}**"]
}
],
"customManagers": [
{
"customType": "regex",
"fileMatch": [
"(^|\\/)Makefile$",
"(^|\\/)Dockerfile",
"(^|\\/).*\\.ya?ml$",
"(^|\\/).*\\.toml$",
"(^|\\/).*\\.sh$"
],
"matchStrings": [
"# renovate: datasource=(?<datasource>.+?) depName=(?<depName>.+?)\\s.*?_VERSION ?(:|=|\\?=|:=|\\+=) ?\\\"?(?<currentValue>.+?)?\\\"?\\s"
]
}
],
"kubernetes": {
"fileMatch": [
"examples\\/.*\\.ya?ml$",
"test\\/.*\\.ya?ml$"
],
"packageRules": [
{
"matchPackageNames": ["!/.*podtato\\-head.*/"]
}
],
"ignorePaths": [
"examples/support/observability/config/prometheus/**/*",
"test/prometheus/**/*",
"test/integration/simple-deployment-container-annotation/00-install.yaml"
]
}
}