Skip to content

Commit

Permalink
Group common dependencies in single PRs (#812)
Browse files Browse the repository at this point in the history
  • Loading branch information
devinmatte committed Aug 4, 2023
1 parent ca519c8 commit dcdb594
Showing 1 changed file with 23 additions and 5 deletions.
28 changes: 23 additions & 5 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,29 @@

version: 2
updates:
- package-ecosystem: "npm" # See documentation for possible values
directory: "/" # Location of package manifests
- package-ecosystem: 'npm' # See documentation for possible values
directory: '/' # Location of package manifests
schedule:
interval: "monthly"
interval: 'monthly'
ignore:
# Ignore patch version bumps
- dependency-name: "*"
update-types: ["version-update:semver-patch"]
- dependency-name: '*'
update-types: ['version-update:semver-patch']
groups:
storybook:
patterns:
- '@storybook/*'
- 'storybook'
- '*-storybook'
fontawesome:
patterns:
- '@fortawesome/*'
chartjs:
patterns:
- 'chart.js'
- 'chartjs-*'
next:
patterns:
- 'next'
- '*-next'
- 'next-*'

0 comments on commit dcdb594

Please sign in to comment.