-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json
106 lines (106 loc) · 2.98 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base",
"docker:enableMajor",
":disableRateLimiting",
":dependencyDashboard",
":semanticCommits",
":enablePreCommit",
":automergeDigest",
":automergeBranchPush",
"github>billimek/k8s-gitops//.github/renovate/allowedVersions.json5",
"github>billimek/k8s-gitops//.github/renovate/autoMerge.json5",
"github>billimek/k8s-gitops//.github/renovate/disabledDatasources.json5",
"github>billimek/k8s-gitops//.github/renovate/groups.json5"
],
"enabled": true,
"timezone": "Europe/Zurich",
"semanticCommits": "enabled",
"commitBodyTable": true,
"dependencyDashboard": true,
"suppressNotifications": ["prIgnoreNotification"],
"rebaseWhen": "conflicted",
"commitMessageTopic": "{{depName}}",
"commitMessageExtra": "to {{newVersion}}",
"commitMessageSuffix": "",
"helm-values": {
"fileMatch": ["./.+\\.yaml$"]
},
"flux": {
"fileMatch": ["./.+\\.yaml$"]
},
"kubernetes": {
"fileMatch": ["\\.yaml$"],
"ignorePaths": [
"flux-system/",
".github"
]
},
"regexManagers": [
{
"fileMatch": ["./.+\\.yaml$"],
"matchStrings": [
"registryUrl=(?<registryUrl>.*?)\n *chart: (?<depName>.*?)\n *version: (?<currentValue>.*)\n"
],
"datasourceTemplate": "helm"
}
],
"packageRules": [
{
"datasources": ["helm"],
"commitMessageTopic": "Helm chart {{depName}}",
"semanticCommitScope": "charts",
"separateMinorPatch": true,
"ignoreDeprecated": true
},
{
"datasources": ["docker"],
"commitMessageTopic": "Docker image {{depName}}",
"commitMessageExtra": "to {{#if isSingleVersion}}{{{toVersion}}}{{else}}{{{newValue}}}{{/if}}",
"updateTypes": ["major", "minor", "patch"],
"enabled": true
},
{
"matchDatasources": ["docker"],
"semanticCommitScope": "images",
"separateMinorPatch": true
},
{
"matchDatasources": ["docker"],
"matchUpdateTypes": ["major"],
"commitMessagePrefix": "feat(images)!: ",
"labels": ["renovate/image", "dep/major"]
},
{
"matchDatasources": ["docker"],
"matchUpdateTypes": ["minor"],
"semanticCommitType": "feat",
"labels": ["renovate/image", "dep/minor"]
},
{
"matchDatasources": ["docker"],
"matchUpdateTypes": ["patch"],
"semanticCommitType": "fix",
"labels": ["renovate/image", "dep/patch"]
},
{
"matchDatasources": ["helm"],
"matchUpdateTypes": ["major"],
"commitMessagePrefix": "feat(charts)!: ",
"labels": ["renovate/helm", "dep/major"]
},
{
"matchDatasources": ["helm"],
"matchUpdateTypes": ["minor"],
"semanticCommitType": "feat",
"labels": ["renovate/helm", "dep/minor"]
},
{
"matchDatasources": ["helm"],
"matchUpdateTypes": ["patch"],
"semanticCommitType": "fix",
"labels": ["renovate/helm", "dep/patch"]
}
]
}