Skip to content

Commit 889cc7a

Browse files
chore: configure Dependabot to group React updates (#992)
## Summary - Configures Dependabot to group `react` and `react-dom` updates into a single PR - Prevents version mismatch failures in CI when these packages are updated separately ## Context PRs #989 and #990 were created separately for `react` and `react-dom` updates, causing CI failures due to peer dependency version mismatches. This configuration ensures both packages are updated together in future Dependabot PRs. ## Changes - Added `groups` configuration to `.github/dependabot.yml` for React packages
1 parent 0d2560a commit 889cc7a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/dependabot.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,8 @@ updates:
1111
ignore:
1212
- dependency-name: "*"
1313
update-types: ["version-update:semver-major"]
14+
groups:
15+
react:
16+
patterns:
17+
- "react"
18+
- "react-dom"

0 commit comments

Comments
 (0)