From 8b7043c7ddd4476ad5c72c371ed6c03cba5bd456 Mon Sep 17 00:00:00 2001 From: Yogesh Chaudhary Date: Tue, 27 Jan 2026 11:55:10 +0530 Subject: [PATCH] chore: configure Dependabot to group React updates This ensures react and react-dom are updated together in a single PR, preventing version mismatch failures in CI. --- .github/dependabot.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index a9874b68..a5e04a63 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -11,3 +11,8 @@ updates: ignore: - dependency-name: "*" update-types: ["version-update:semver-major"] + groups: + react: + patterns: + - "react" + - "react-dom"