From 813d0437b3b1a9bd592791a2eb675a95c1826fcd Mon Sep 17 00:00:00 2001 From: Timo Behrendt Date: Thu, 6 Aug 2026 20:40:00 +0200 Subject: [PATCH] feat(bun): split dev and runtime non-major grups --- bun-npm.json | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/bun-npm.json b/bun-npm.json index 79de24b..2c10ee6 100644 --- a/bun-npm.json +++ b/bun-npm.json @@ -7,9 +7,18 @@ "addLabels": ["deps", "npm"] }, { - "description": "Group all minor and patch updates together", - "groupName": "all non-major dependencies", - "groupSlug": "all-minor-patch", + "description": "Group all minor and patch runtime dependency updates together", + "groupName": "dependencies(non-major)", + "groupSlug": "dependencies", + "matchDepTypes": ["dependencies"], + "matchUpdateTypes": ["minor", "patch"], + "matchManagers": ["npm", "bun"] + }, + { + "description": "Group all minor and patch development dependency updates together", + "groupName": "devDependencies (non-major)", + "groupSlug": "dev-dependencies", + "matchDepTypes": ["devDependencies"], "matchUpdateTypes": ["minor", "patch"], "matchManagers": ["npm", "bun"] }, -- 2.52.0