feat(bun): split dev and runtime non-major grups #121

Merged
t.behrendt merged 1 commits from feat-bun-split-dev-and-runtime-dep-groups into main 2026-08-06 20:41:08 +02:00
Showing only changes of commit 813d0437b3 - Show all commits
+12 -3
View File
@@ -7,9 +7,18 @@
"addLabels": ["deps", "npm"] "addLabels": ["deps", "npm"]
}, },
{ {
"description": "Group all minor and patch updates together", "description": "Group all minor and patch runtime dependency updates together",
"groupName": "all non-major dependencies", "groupName": "dependencies(non-major)",
"groupSlug": "all-minor-patch", "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"], "matchUpdateTypes": ["minor", "patch"],
"matchManagers": ["npm", "bun"] "matchManagers": ["npm", "bun"]
}, },