From 65f989a7bc89915760860620223387d94e84b70b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=83=8F=E3=83=B3=20/=20Han?= <16288797+hannoeru@users.noreply.github.com> Date: Wed, 7 Feb 2024 11:20:11 +0900 Subject: [PATCH 1/3] feat: group ci packages --- default.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/default.json b/default.json index aa9daca..7dd525e 100644 --- a/default.json +++ b/default.json @@ -29,6 +29,10 @@ "schedule": ["before 3:00 am on the 15th day of the month"] }, "packageRules": [ + { + "matchManagers": ["ci"], + "groupName": "ci" + }, { "matchDepTypes": ["peerDependencies"], "rangeStrategy": "widen" From cfc58dbee082fc8bab28c2c870a1cb614c760626 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=83=8F=E3=83=B3=20/=20Han?= <16288797+hannoeru@users.noreply.github.com> Date: Wed, 7 Feb 2024 11:24:29 +0900 Subject: [PATCH 2/3] fix: manager name --- default.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/default.json b/default.json index 7dd525e..3b85b75 100644 --- a/default.json +++ b/default.json @@ -30,8 +30,8 @@ }, "packageRules": [ { - "matchManagers": ["ci"], - "groupName": "ci" + "matchManagers": ["github-actions"], + "groupName": "github-actions" }, { "matchDepTypes": ["peerDependencies"], From 72d07bbfc3587fb54f6f43b9e4928ecac7f8ef03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=83=8F=E3=83=B3=20/=20Han?= <16288797+hannoeru@users.noreply.github.com> Date: Wed, 7 Feb 2024 15:26:05 +0900 Subject: [PATCH 3/3] feat: scope to official packages only --- default.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/default.json b/default.json index 3b85b75..994bbb4 100644 --- a/default.json +++ b/default.json @@ -31,7 +31,8 @@ "packageRules": [ { "matchManagers": ["github-actions"], - "groupName": "github-actions" + "matchPackagePatterns": ["^actions/"], + "groupName": "github-actions official" }, { "matchDepTypes": ["peerDependencies"],