enable renovate automerge for non-major package updates
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Robert Kaussow 2023-04-23 14:36:54 +02:00
parent a91d1aacd2
commit 69b1b5c958
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0
1 changed files with 14 additions and 1 deletions

View File

@ -1,4 +1,17 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["github>thegeeklab/renovate-presets:docker"]
"extends": ["github>thegeeklab/renovate-presets:docker"],
"packageRules": [
{
"description": "Automerge non-major package updates",
"matchPackageNames": [
"prettier",
"yamllint",
"hairyhenderson/gomplate",
"yannh/kubeconform"
],
"matchUpdateTypes": ["minor", "patch"],
"automerge": true
}
]
}