helm-docker/renovate.json
Markus Pesch f90dbeb283
All checks were successful
continuous-integration/drone/push Build is passing
fix(ci): control depname via regex
2022-01-30 15:31:05 +01:00

22 lines
589 B
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"automergeStrategy": "merge-commit",
"automergeType": "pr",
"labels": [ "renovate" ],
"rebaseLabel": "renovate/rebase",
"rebaseWhen": "behind-base-branch",
"regexManagers": [
{
"description": "Update helm version",
"fileMatch": [
"^Makefile$"
],
"matchStrings": [
"HELM_VERSION\\?=(?<currentValue>.*) # renovate: datasource=(?<datasource>.*) depName=(?<depName>.*)"
],
"lookupNameTemplate": "helm/helm",
"versioningTemplate": "semver"
}
]
}