From 4c5bfa06822a27d2d490798f75ab0dfb235f16e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20K=C3=B6lnberger?= <159939812+ProfRandom92@users.noreply.github.com> Date: Thu, 21 May 2026 04:58:07 -0700 Subject: [PATCH] chore: limit grouped npm updates to minor and patch --- .github/dependabot.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 74a2ab6..e2c6cdd 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -25,9 +25,12 @@ updates: commit-message: prefix: "chore" groups: - all-npm: + all-npm-minor-patch: patterns: - "*" + update-types: + - "minor" + - "patch" - package-ecosystem: "npm" directory: "/showcase/app" @@ -36,6 +39,9 @@ updates: commit-message: prefix: "chore" groups: - all-npm: + all-npm-minor-patch: patterns: - "*" + update-types: + - "minor" + - "patch"