From 2ef388808cf21abad8c60bab01a3ca31a9569a21 Mon Sep 17 00:00:00 2001 From: Henrique Santos <118177985+hcsa73@users.noreply.github.com> Date: Wed, 24 Jan 2024 13:50:34 +0000 Subject: [PATCH] Group SDK updates (#231) Co-authored-by: Henrique Santos --- .github/renovate.json | 34 ++++++++++++++-------------------- 1 file changed, 14 insertions(+), 20 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index 6b878865..f9f51b50 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,21 +1,15 @@ { - "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "config:recommended" - ], - "prHourlyLimit": 10, - "labels": [ - "renovate" - ], - "repositories": [ - "stackitcloud/terraform-provider-stackit" - ], - "enabledManagers": [ - "gomod", - "github-actions" - ], - "postUpdateOptions": [ - "gomodTidy", - "gomodUpdateImportPaths" - ] -} \ No newline at end of file + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["config:recommended"], + "prHourlyLimit": 10, + "labels": ["renovate"], + "repositories": ["stackitcloud/terraform-provider-stackit"], + "enabledManagers": ["gomod", "github-actions"], + "packageRules": [ + { + "matchSourceUrls": ["https://github.com/stackitcloud/stackit-sdk-go"], + "groupName": "SDK" + } + ], + "postUpdateOptions": ["gomodTidy", "gomodUpdateImportPaths"] +}