Created
September 8, 2023 17:49
-
-
Save johnhunter/d4209ae55ff0a0447446229886222049 to your computer and use it in GitHub Desktop.
Example .github dependabot config for using the new groups feature
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: 2 | |
updates: | |
- package-ecosystem: npm | |
directory: / | |
schedule: | |
interval: weekly | |
day: "saturday" | |
time: "08:00" | |
groups: | |
patches: | |
update-types: | |
- "patch" | |
minor-lint-test: | |
update-types: | |
- "minor" | |
patterns: | |
- "prettier" | |
- "eslint*" | |
- "ava" | |
- "jsdom" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This gives me two grouped PRs on Saturday morning :)
One that has all the patch updates, the other has minor version updates for all the dev related stuff.