Files
homeprod/renovate.json
T
kosmosandvhaudiquet 74f404b6c9 chore: simplify renovate config to rely on auto-discovery
Drop the generate-renovate.sh generator and explicit fileMatch lists.
Renovate auto-discovers docker-compose, values.yaml and Chart.yaml via
the docker-compose, helm-values and helmv3 managers. Use helmv3 (not
helm-requirements) for Chart.yaml dependencies (Helm v3).
2026-08-26 19:58:55 +02:00

30 lines
642 B
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"schedule": [
"every weekend"
],
"prConcurrentLimit": 15,
"enabledManagers": [
"docker-compose",
"helm-values",
"helmv3"
],
"packageRules": [
{
"description": "docker-compose updates",
"matchManagers": [
"docker-compose"
],
"commitMessage": "docker(deps): bump {{{depName}}} in {{{packageFile}}}"
},
{
"description": "helm updates",
"matchManagers": [
"helm-values",
"helmv3"
],
"commitMessage": "kube(deps): bump {{{depName}}} in {{{packageFile}}}"
}
]
}