fix(renovate): enable automerge for droneci manager
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Markus Pesch 2022-02-09 22:48:19 +01:00
parent 379e9e794d
commit ac723e84c3
Signed by: volker.raschek
GPG Key ID: 852BCC170D81A982
1 changed files with 20 additions and 4 deletions

View File

@ -1,21 +1,37 @@
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"automerge": false, "assigneesFromCodeOwners": true,
"automergeStrategy": "merge-commit", "automergeStrategy": "merge-commit",
"automergeType": "pr", "automergeType": "pr",
"labels": [ "renovate" ], "labels": [ "renovate" ],
"packageRules": [ "packageRules": [
{
"description": "Automatically update minor and patch versions of used drone-ci images",
"addLabels": [ "renovate/droneci", "renovate/automerge" ],
"automerge": true,
"matchManagers": "droneci",
"matchUpdateTypes": [ "minor", "patch"]
},
{ {
"description": "Automatically update minor and patch versions of go modules", "description": "Automatically update minor and patch versions of go modules",
"addLabels": [ "renovate/gomod", "renovate/automerge" ], "addLabels": [ "renovate/gomod", "renovate/automerge" ],
"automerge": true, "automerge": true,
"matchBaseBranches": [ "master" ],
"matchManagers": [ "gomod" ], "matchManagers": [ "gomod" ],
"matchUpdateTypes": [ "minor", "patch" ] "matchUpdateTypes": [ "minor", "patch" ]
},
{
"description": "Prepare MR for major update minor of go modules",
"addLabels": [ "renovate/gomod" ],
"automerge": false,
"matchBaseBranches": [ "master" ],
"matchManagers": [ "gomod" ],
"matchUpdateTypes": [ "major" ]
} }
], ],
"rebaseLabel": "renovate/rebase",
"rebaseWhen": "behind-base-branch",
"postUpdateOptions": [ "postUpdateOptions": [
"gomodTidy" "gomodTidy"
] ],
"rebaseLabel": "renovate/rebase",
"rebaseWhen": "behind-base-branch"
} }