-
Notifications
You must be signed in to change notification settings - Fork 483
/
renovate.json
51 lines (51 loc) · 1.22 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"enabledManagers": [
"custom.regex"
],
"automerge": false,
"separateMinorPatch": true,
"labels": [
"dependencies"
],
"schedule": "before 5am every weekday",
"customManagers": [
{
"description": "Match dependencies in .tools_verisons.yaml and .github/workflows/* that are properly annotated with `# renovate: datasource={} depName={}.`",
"customType": "regex",
"fileMatch": [
"\\.tools_versions\\.yaml$",
"\\.github/workflows/.*\\.yaml$"
],
"matchStrings": [
"# renovate: datasource=(?<datasource>.*?) depName=(?<depName>.*?)\\n.+\"(?<currentValue>.*?)\""
]
}
],
"packageRules": [
{
"description": "Only update patch versions for selected dependencies.",
"matchUpdateTypes": [
"major",
"minor"
],
"enabled": false,
"matchDepNames": [
"kindest/node"
]
},
{
"description": "Group Kubernetes updates together.",
"matchUpdateTypes": [
"patch"
],
"groupName": "kindest/node",
"matchDepNames": [
"kindest/node"
]
}
]
}