-
Notifications
You must be signed in to change notification settings - Fork 15
/
renovate.json
38 lines (38 loc) · 1.24 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"kubernetes": {
"fileMatch": ["\\.yaml$", "\\.yml$", "\\.sh$"]
},
"regexManagers": [
{
"fileMatch": ["\\.md$"],
"matchStrings": [
"\\shttps:\/\/github.com\/argoproj\/argo-workflows\/releases\/download\/(?<currentValue>.*)\/[^\\s]*"
],
"versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}",
"depNameTemplate": "argoproj/argo-workflows",
"datasourceTemplate": "github-releases"
},
{
"fileMatch": ["install.sh$"],
"matchStrings": [
"ARGO_WORKFLOWS_VERSION='(?<currentValue>.*)'"
],
"versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}",
"depNameTemplate": "argoproj/argo-workflows",
"datasourceTemplate": "github-releases"
},
{
"fileMatch": ["\\.md$"],
"matchStrings": [
"\\shttps:\/\/github.com\/argoproj\/argo-events\/releases\/download\/(?<currentValue>.*)\/[^\\s]*"
],
"versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}",
"depNameTemplate": "argoproj/argo-events",
"datasourceTemplate": "github-releases"
}
]
}