Skip to content

Commit ea089c3

Browse files
authored
add Renovate configuration (#217)
Configure Renovate to automatically track updates for: - etcd image tags in Helm chart values - GitHub Actions in CI workflows Signed-off-by: Simon Lauger <simon@lauger.de>
1 parent d469d81 commit ea089c3

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

renovate.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": [
4+
"config:recommended"
5+
],
6+
"labels": ["dependencies"],
7+
"customManagers": [
8+
{
9+
"customType": "regex",
10+
"description": "Update etcd image tags in Helm values",
11+
"fileMatch": ["charts/.+/values\\.yaml$"],
12+
"matchStrings": [
13+
"image:\\s*(?<depName>quay\\.io/coreos/etcd)\\n\\s*tag:\\s*(?<currentValue>v[\\d.]+)"
14+
],
15+
"datasourceTemplate": "docker"
16+
}
17+
],
18+
"packageRules": [
19+
{
20+
"description": "Group etcd updates across all charts",
21+
"matchPackageNames": ["quay.io/coreos/etcd"],
22+
"groupName": "etcd",
23+
"versioning": "semver"
24+
},
25+
{
26+
"description": "Group GitHub Actions updates",
27+
"matchManagers": ["github-actions"],
28+
"groupName": "github-actions"
29+
}
30+
]
31+
}

0 commit comments

Comments
 (0)