chore: add renovate bot modular configuration (#1983)

This commit is contained in:
Joe Harrison
2025-10-07 05:21:18 +01:00
committed by GitHub
parent 94a43ea480
commit 0af453ee33
8 changed files with 154 additions and 21 deletions

22
.github/renovate/helm.json5 vendored Normal file
View File

@@ -0,0 +1,22 @@
{
$schema: 'https://docs.renovatebot.com/renovate-schema.json',
packageRules: [
{
matchManagers: ['helm-values'],
matchFileNames: ['charts/*/values.yaml'],
},
],
customManagers: [
{
customType: 'regex',
description: 'Update appVersion in Chart.yaml to match Docker image',
fileMatch: ['(^|/)Chart\\.yaml$'],
matchStrings: [
'#\\s+renovate:\\s+image=(?<depName>\\S*)\nappVersion:\\s+"(?<currentValue>\\S*)"',
],
datasourceTemplate: 'docker',
},
],
}