0
0
mirror of https://github.com/thegeeklab/renovate-presets.git synced 2024-11-14 18:30:40 +00:00

fix: automerge go patch version updates

This commit is contained in:
Robert Kaussow 2024-11-07 09:09:42 +01:00
parent 7747ee1e08
commit 34cafdffe5
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0

View File

@ -44,11 +44,19 @@
"versioning": "regex:^go-(?<major>\\d+)\\.(?<minor>\\d+)\\.x$"
},
{
"description": "Group golang version updates",
"groupName": "update golang",
"commitMessage": "{{{commitMessagePrefix}}} {{#if groupName}}{{{groupName}}}{{else}}update {{{depName}}}{{/if}} {{updateType}} version",
"matchDatasources": ["docker", "golang-version"],
"matchUpdateTypes": ["patch", "minor", "major"],
"matchUpdateTypes": ["minor", "major"],
"matchPackagePatterns": ["techknowlogick/xgo", "golang", "go"]
},
{
"groupName": "Autmerge update go patch version",
"matchDatasources": ["golang-version"],
"matchUpdateTypes": ["patch"],
"matchPackagePatterns": ["go"],
"automerge": true
}
]
}