From 4953e54e5c6e4b5b7a2798dd73a576c14f877fc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Ku=C3=9Fowski?= Date: Fri, 15 May 2026 13:13:58 +0200 Subject: [PATCH] fix: do not use grouping for pub --- nix/modules/infrastructure.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nix/modules/infrastructure.nix b/nix/modules/infrastructure.nix index 75a9fd8..e9a10f1 100644 --- a/nix/modules/infrastructure.nix +++ b/nix/modules/infrastructure.nix @@ -72,12 +72,14 @@ in " registries:" " - private-github-npm" ] - ++ [ + ++ lib.optionals (eco != "pub") [ # For pub we prefer to have single PRs per dependency bump " groups:" " major:" " update-types: [\"major\"]" " minor-and-patch:" " update-types: [\"minor\", \"patch\"]" + ] + ++ [ " commit-message:" " prefix: \"chore(deps): \"" " include: \"scope\""