From b63aa63416cd0a561ab50867633a2973161129dd Mon Sep 17 00:00:00 2001 From: Yogesh Chaudhary Date: Thu, 26 Feb 2026 09:15:06 +0530 Subject: [PATCH] fix: group angular patch updates in dependabot config The angular group was only matching minor updates, causing separate PRs for patch-level bumps. Adding patch to update-types ensures all angular version updates are grouped into a single PR. --- .github/dependabot.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 9662a363..c1d9f41f 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -10,6 +10,7 @@ updates: - '@angular*' update-types: - 'minor' + - 'patch' ignore: - dependency-name: '*' update-types: ['version-update:semver-major']