fix(ci): adapt renovate config
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Markus Pesch 2022-01-02 12:12:32 +01:00
parent 7fca7a2c40
commit e1537c6dda
Signed by: volker.raschek
GPG Key ID: 852BCC170D81A982
3 changed files with 25 additions and 3 deletions

1
CODEOWNERS Normal file
View File

@ -0,0 +1 @@
* @volker.raschek

View File

@ -3,7 +3,7 @@ name: renovate
description: Helm chart for renovate bot
type: application
version: 1.0.0
appVersion: "31.11.2-slim"
appVersion: "31.11.1-slim"
icon: https://avatars3.githubusercontent.com/u/38656520?s=400&v=4
keywords:

View File

@ -1,8 +1,27 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"assigneesFromCodeOwners": true,
"automergeStrategy": "merge-commit",
"automergeType": "pr",
"assignees": [ "volker.raschek" ],
"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" ]
}
],
"regexManagers": [
{
"description": "Update renovate container image reference",
@ -15,5 +34,7 @@
"depNameTemplate": "docker.io/renovate/renovate",
"datasourceTemplate": "docker"
}
]
],
"rebaseLabel": "renovate/rebase",
"rebaseWhen": "behind-base-branch"
}