feat(bun): split dev and runtime non-major grups
CI / Test (action.json) (push) Successful in 2s
CI / Test (bun-npm.json) (push) Successful in 3s
CI / Test (golang.json) (push) Successful in 2s
CI / Test (helm.json) (push) Successful in 1s
CI / Test (common.json) (push) Successful in 8s
CI / Test (k8s.json) (push) Successful in 2s
CI / Format (push) Successful in 4s
CI / Test (docker-compose.json) (push) Successful in 16s

This commit is contained in:
2026-08-06 20:40:00 +02:00
parent 0520dc9a30
commit 813d0437b3
+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"]
}, },