Skip to content

Commit

Permalink
chore(deps): separate minor and patch updates in npm dependabot (#2742)
Browse files Browse the repository at this point in the history
It happens fairly frequently that npm dependabot updates fail, separating minor and patch will reduce time spent debugging
  • Loading branch information
corneliusroemer authored Sep 10, 2024
1 parent dbe4c3b commit 1db46b9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,14 @@ updates:
schedule:
interval: weekly
groups:
minorAndPatch:
minor:
update-types:
- "minor"
exclude-patterns:
- "@mui/material"
- change-case
patch:
update-types:
- "patch"
exclude-patterns:
- "@mui/material"
Expand Down

0 comments on commit 1db46b9

Please sign in to comment.