forked from grafana/cortex-tools
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add renovate.json Signed-off-by: Renovate Bot <[email protected]> * add regex-matching for automatically bumping versions in README.md Signed-off-by: ShuzZzle <[email protected]> Co-authored-by: Renovate Bot <[email protected]> Co-authored-by: Niclas Schad <[email protected]>
- Loading branch information
1 parent
673e198
commit 52f3fae
Showing
1 changed file
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": [ | ||
"config:base", | ||
":gitSignOff" | ||
], | ||
"assignees": [ | ||
"ShuzZzle", | ||
"kd7lxl" | ||
], | ||
"regexManagers": [{ | ||
"description": "Update cortex image in README.md", | ||
"fileMatch": ["^README\\.md$"], | ||
"matchStrings": [ | ||
"\\|\\s+image.​tag\\s+\\|\\s+string\\s+\\|\\s+`\"(?<currentValue>.*?)\"`\\s+\\|\\s+\\|\\s+" | ||
], | ||
"depNameTemplate": "quay.io/cortexproject/cortex", | ||
"datasourceTemplate": "docker" | ||
}, | ||
{ | ||
"description": "Update nginx image in README.md", | ||
"fileMatch": ["^README\\.md$"], | ||
"matchStrings": [ | ||
"\\|\\s+nginx.​image.​tag\\s+\\|\\s+float\\s+\\|\\s+\\`(?<currentValue>.*?)\\`\\s+\\|\\s+\\|\\s+" | ||
], | ||
"depNameTemplate": "nginx", | ||
"datasourceTemplate": "docker" | ||
}, | ||
{ | ||
"description": "Update kiwigrid/k8s-sidecar image in README.md", | ||
"fileMatch": ["^README\\.md$"], | ||
"matchStrings": [ | ||
"\\|\\s+ruler.​sidecar.​image.​tag\\s+\\|\\s+string\\s+\\|\\s+`\"(?<currentValue>.*?)\"`\\s+\\|\\s+\\|\\s+", | ||
"\\|\\s+alertmanager.​sidecar.​image.​tag\\s+\\|\\s+string\\s+\\|\\s+`\"(?<currentValue>.*?)\"`\\s+\\|\\s+\\|\\s+" | ||
], | ||
"depNameTemplate": "quay.io/kiwigrid/k8s-sidecar", | ||
"datasourceTemplate": "docker" | ||
}, | ||
{ | ||
"description": "Update memcached image in README.md", | ||
"fileMatch": ["^README\\.md$"], | ||
"matchStrings": [ | ||
"\\|[^|]*\\|[^|]*\\(memcached\\)[^|]*\\|\\s+(?<currentValue>.*?)\\s+\\|\\s+" | ||
], | ||
"depNameTemplate": "memcached", | ||
"registryUrlTemplate": "https://charts.bitnami.com/bitnami", | ||
"datasourceTemplate": "helm" | ||
} | ||
] | ||
} |