From c92ded726f8496308569557a93012b6ab059b80e Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Wed, 3 Apr 2024 09:48:14 +0200 Subject: [PATCH] Avoid brances in group names (#3589) Removes brackets from group names, as these are also used for branch names and brackets lead to problems with tab completion on the cli. --- .github/renovate.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index b38fc1202..241bdca25 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -8,12 +8,12 @@ "addLabels": ["devx"] }, { - "groupName": "golang (lang)", + "groupName": "golang-lang", "matchPackagePatterns": ["^golang$", "xgo"], "matchUpdateTypes": ["minor", "patch"] }, { - "groupName": "golang (packages)", + "groupName": "golang-packages", "matchManagers": ["gomod"], "matchUpdateTypes": ["minor", "patch"] },