-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrenovate.json
58 lines (58 loc) · 1.73 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
"docker:enableMajor",
":semanticCommits",
":disableRateLimiting",
"helpers:pinGitHubActionDigests",
"github>IAreKyleW00t/k2net//.github/renovate/groups.json",
"github>IAreKyleW00t/k2net//.github/renovate/labels.json",
"github>IAreKyleW00t/k2net//.github/renovate/semanticCommits.json",
"github>IAreKyleW00t/k2net//.github/renovate/versions.json"
],
"dependencyDashboardTitle": "Renovate Dashboard 🛡️",
"timezone": "America/New_York",
"schedule": ["at any time"],
"automerge": false,
"automergeSchedule": [],
"rebaseWhen": "conflicted",
"bumpVersion": "patch",
"kubernetes": {
"fileMatch": [
"k8s/deploy/.+/main\\.ya?ml$",
"k8s/deploy/.+/templates/.+\\.ya?ml$"
]
},
"helmv3": {
"fileMatch": ["k8s/deploy/.+/Chart\\.ya?ml$"]
},
"helm-values": {
"fileMatch": ["k8s/deploy/.+/values\\.ya?ml$"]
},
"argocd": {
"fileMatch": ["k8s/apps/.+\\.ya?ml$"]
},
"terraform": {
"fileMatch": ["terraform/.+\\.tf$"]
},
"ansible": {
"fileMatch": ["ansible/roles/.+/tasks/.+\\.ya?ml$"]
},
"ansible-galaxy": {
"fileMatch": ["ansible/requirements\\.ya?ml$", "ansible/galaxy\\.ya?ml$"]
},
"regexManagers": [
{
"fileMatch": [
".github/.+/.+\\.ya?ml$",
"ansible/group_vars/.+\\.ya?ml$",
"ansible/host_vars/.+\\.ya?ml$"
],
"matchStrings": [
"#\\s?renovate: datasource=(?<datasource>.*?)\\s?.+[_-]container[_-]image: (?<depName>.+):(?<currentValue>[\\w+\\.\\-]*)",
"#\\s?renovate: datasource=(?<datasource>.*?) depName=(?<depName>.*?)\\s?.+[_-]version: (?<currentValue>[\\w+\\.\\-]*)"
]
}
]
}