From 713d0fa3b34f3d9f021d1bef8a8ab3d22b19a734 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 7 Mar 2025 18:23:38 +0100 Subject: [PATCH] Migrate config renovate.json (#93) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- renovate.json | 39 ++++++++++++++++++++++++++++++--------- 1 file changed, 30 insertions(+), 9 deletions(-) diff --git a/renovate.json b/renovate.json index ac7fbc3..736f7af 100644 --- a/renovate.json +++ b/renovate.json @@ -1,6 +1,8 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": ["config:base"], + "extends": [ + "config:recommended" + ], "prConcurrentLimit": 3, "prHourlyLimit": 1, "recreateWhen": "auto", @@ -8,20 +10,39 @@ "packageRules": [ { "groupName": "Swift non-major dependencies", - "matchManagers": ["swift"], - "matchUpdateTypes": ["minor", "patch"], - "labels": ["swift"] + "matchManagers": [ + "swift" + ], + "matchUpdateTypes": [ + "minor", + "patch" + ], + "labels": [ + "swift" + ] }, { "groupName": "CI non-major dependencies", - "matchManagers": ["github-actions"], - "matchUpdateTypes": ["minor", "patch"], - "labels": ["ci"] + "matchManagers": [ + "github-actions" + ], + "matchUpdateTypes": [ + "minor", + "patch" + ], + "labels": [ + "ci" + ] }, { "groupName": "Other non-major dependencies", - "matchUpdateTypes": ["minor", "patch"] + "matchUpdateTypes": [ + "minor", + "patch" + ] } ], - "labels": ["dependencies"] + "labels": [ + "dependencies" + ] }