renovate-charts/renovate.json

40 lines
1.2 KiB
JSON
Raw Normal View History

2021-10-28 19:49:55 +00:00
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
2022-01-02 11:12:32 +00:00
"assigneesFromCodeOwners": true,
2021-10-28 19:49:55 +00:00
"automergeStrategy": "merge-commit",
"automergeType": "pr",
2022-01-02 11:12:32 +00:00
"labels": [ "renovate" ],
"packageRules": [
{
"description": "Automatically update minor and patch versions of the renovate container image",
"addLabels": [ "renovate/kubernetes", "renovate/automerge" ],
"automerge": true,
"matchBaseBranches": [ "master" ],
"matchManagers": [ "kubernetes" ],
"matchUpdateTypes": [ "minor", "patch" ]
},
{
"description": "Prepare MR for major update minor of the renovate container image",
"addLabels": [ "renovate/kubernetes" ],
"automerge": false,
"matchBaseBranches": [ "master" ],
"matchManagers": [ "kubernetes" ],
"matchUpdateTypes": [ "major" ]
}
],
2021-10-28 19:49:55 +00:00
"regexManagers": [
{
"description": "Update renovate container image reference",
"fileMatch": [
"^Chart\\.yaml$"
],
"matchStrings": [
"appVersion: \"(?<currentValue>.*?)\"\\s+"
],
"depNameTemplate": "docker.io/renovate/renovate",
"datasourceTemplate": "docker"
}
2022-01-02 11:12:32 +00:00
],
"rebaseLabel": "renovate/rebase",
"rebaseWhen": "behind-base-branch"
2021-10-28 19:49:55 +00:00
}