-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenovate.json
45 lines (45 loc) · 1.36 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":disableRateLimiting"
],
"labels": [
"renovate"
],
"assigneesFromCodeOwners": true,
"minimumReleaseAge": "3 days",
"internalChecksFilter": "strict",
"ansible-galaxy": {
"fileMatch": [
"^ansible/requirements\\.ya?ml$"
]
},
"flux": {
"fileMatch": [
"^k3s-stable/.*\\.ya?ml$"
]
},
"helm-values": {
"fileMatch": [
"^k3s-stable/.*\\.ya?ml$"
]
},
"customManagers": [
{
"customType": "regex",
"description": "Process custom dependencies",
"fileMatch": [
"(^|/)ansible/.+\\.ya?ml(\\.j2)?$",
"(^|/)k3s-stable/.+\\.ya?ml(\\.j2)?$"
],
"matchStrings": [
"datasource=(?<datasource>\\S+) depName=(?<depName>\\S+)( versioning=(?<versioning>\\S+))?\n.*?\"(?<currentValue>.*)\"\n",
"datasource=(?<datasource>\\S+) depName=(?<depName>\\S+)( versioning=(?<versioning>\\S+))?\n.*?-\\s(.*?)/(?<currentValue>[^/]+)/[^/]+\n",
"datasource=(?<datasource>\\S+)\n.*?repo: (?<registryUrl>\\S+)\n.*?chart: (?<depName>\\S+)\n.*?version: (?<currentValue>\\S+)\n"
],
"datasourceTemplate": "{{#if datasource}}{{{datasource}}}{{else}}github-releases{{/if}}",
"versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}"
}
]
}