From f1eba0321f50e1b75160f92eab0b4bee03dcdc39 Mon Sep 17 00:00:00 2001 From: jld3103 Date: Fri, 22 Sep 2023 08:39:08 +0200 Subject: [PATCH] feat(tool): Configure renovate groups Signed-off-by: jld3103 --- .github/renovate.json | 34 +++++++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/.github/renovate.json b/.github/renovate.json index 47c1c862..8364cf20 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -6,5 +6,37 @@ "labels": [ "dependencies" ], - "rangeStrategy": "bump" + "rangeStrategy": "bump", + "packageRules": [ + { + "groupName": "built_value", + "matchPackagePatterns": "^built" + }, + { + "groupName": "go_router", + "matchPackagePatterns": "^go_router" + }, + { + "groupName": "sqflite", + "matchPackagePatterns": "^sqflite" + }, + { + "groupName": "unifiedpush", + "matchPackagePatterns": "^unifiedpush" + }, + { + "groupName": "xml_serializable", + "matchPackageNames": [ + "xml_annotation", + "xml_serializable" + ] + }, + { + "groupName": "json_serializable", + "matchPackageNames": [ + "json_annotation", + "json_serializable" + ] + } + ] }