Compare commits

...

1 Commits

Author SHA1 Message Date
t.behrendt 3e289e256e feat(bun): split dev and runtime non-major grups (#121)
CD / Release (push) Successful in 9s
Implements #93

Reviewed-on: #121
Co-authored-by: Timo Behrendt <t.behrendt@t00n.de>
Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
2026-08-06 20:41:07 +02:00
+12 -3
View File
@@ -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"]
},