mirror of
https://github.com/vhaudiquet/homeprod.git
synced 2026-09-21 16:36:05 +00:00
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).
30 lines
642 B
JSON
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}}}"
|
|
}
|
|
]
|
|
}
|