helm-docker/renovate.json
Markus Pesch 505823cedf
All checks were successful
continuous-integration/drone/push Build is passing
fix(ci): add description and labels
2022-01-30 14:37:06 +01:00

25 lines
640 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",
"addLabels": [ "renovate/helm-version" ],
"automerge": true,
"fileMatch": [
"^Makefile$"
],
"matchStrings": [
"HELM_VERSION?=(?<currentValue>.*)"
],
"datasourceTemplate": "github-releases",
"depNameTemplate": "helm/helm",
"versioningTemplate": "semver"
}
]
}