From 8e27e0e5b7fe94ac3af14b0b284226f6d78072c6 Mon Sep 17 00:00:00 2001 From: Christian Treffs Date: Sun, 9 Aug 2026 08:35:45 +0200 Subject: [PATCH 1/3] chore(renovate): group non-major dependencies by manager --- renovate.json | 33 +++++++++++++++++++++++++++------ 1 file changed, 27 insertions(+), 6 deletions(-) diff --git a/renovate.json b/renovate.json index 9b1f3b3..d985b8c 100644 --- a/renovate.json +++ b/renovate.json @@ -3,20 +3,41 @@ "extends": [ "config:recommended" ], - "prConcurrentLimit": 3, - "prHourlyLimit": 1, "recreateWhen": "auto", "prCreation": "not-pending", "packageRules": [ { - "description": "Accumulate non-major updates into one pull request", + "groupName": "Swift non-major dependencies", + "description": "Group all Swift package minor and patch updates together", + "matchManagers": [ + "swift" + ], + "matchUpdateTypes": [ + "minor", + "patch" + ] + }, + { + "groupName": "Mint non-major dependencies", + "description": "Group all Mint package minor and patch updates together", + "matchManagers": [ + "mint" + ], "matchUpdateTypes": [ "minor", "patch" + ] + }, + { + "groupName": "GitHub Actions non-major dependencies", + "description": "Group all GitHub Actions minor and patch updates together", + "matchManagers": [ + "github-actions" ], - "matchCurrentVersion": ">=1", - "groupName": "all non-major dependencies", - "groupSlug": "all-minor-patch" + "matchUpdateTypes": [ + "minor", + "patch" + ] } ], "labels": [ From 3f32ed28bc723ae4811fd6b8c3580556e2e92351 Mon Sep 17 00:00:00 2001 From: Christian Treffs Date: Sun, 9 Aug 2026 08:36:40 +0200 Subject: [PATCH 2/3] style(renovate): sort keys alphabetically --- renovate.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/renovate.json b/renovate.json index d985b8c..13a7f82 100644 --- a/renovate.json +++ b/renovate.json @@ -1,14 +1,16 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "assignees": [], "extends": [ "config:recommended" ], - "recreateWhen": "auto", - "prCreation": "not-pending", + "labels": [ + "dependencies" + ], "packageRules": [ { - "groupName": "Swift non-major dependencies", "description": "Group all Swift package minor and patch updates together", + "groupName": "Swift non-major dependencies", "matchManagers": [ "swift" ], @@ -18,8 +20,8 @@ ] }, { - "groupName": "Mint non-major dependencies", "description": "Group all Mint package minor and patch updates together", + "groupName": "Mint non-major dependencies", "matchManagers": [ "mint" ], @@ -29,8 +31,8 @@ ] }, { - "groupName": "GitHub Actions non-major dependencies", "description": "Group all GitHub Actions minor and patch updates together", + "groupName": "GitHub Actions non-major dependencies", "matchManagers": [ "github-actions" ], @@ -40,11 +42,9 @@ ] } ], - "labels": [ - "dependencies" - ], + "prCreation": "not-pending", + "recreateWhen": "auto", "reviewers": [], - "assignees": [], "suppressNotifications": [ "prIgnoreNotification", "prEditNotification", From dc9bd1611bd7d530fb9daafbe8dc6f649b75a79f Mon Sep 17 00:00:00 2001 From: Christian Treffs Date: Sun, 9 Aug 2026 08:39:48 +0200 Subject: [PATCH 3/3] fix(renovate): correct prEditedNotification spelling --- renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 13a7f82..86094ef 100644 --- a/renovate.json +++ b/renovate.json @@ -47,7 +47,7 @@ "reviewers": [], "suppressNotifications": [ "prIgnoreNotification", - "prEditNotification", + "prEditedNotification", "branchAutomergeFailure" ] }