Skip to content

Commit

Permalink
chore: configure dependabot for monthly npm/composer update PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
dustin-jw committed Oct 20, 2023
1 parent 45c98d7 commit c3c0bb7
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
version: 2
updates:
- package-ecosystem: 'npm'
directory: '/'
schedule:
interval: 'monthly'
groups:
npm-dev-dependencies:
dependency-type: 'development'
update-types:
- 'minor'
- 'patch'
npm-major-dev-dependencies:
dependency-type: 'development'
update-types:
- 'major'
npm-production-dependencies:
dependency-type: 'production'
update-types:
- 'minor'
- 'patch'
npm-major-production-dependencies:
dependency-type: 'production'
update-types:
- 'major'
- package-ecosystem: 'composer'
directory: '/'
schedule:
interval: 'weekly'
groups:
composer-dev-dependencies:
dependency-type: 'development'
update-types:
- 'minor'
- 'patch'
composer-major-dev-dependencies:
dependency-type: 'development'
update-types:
- 'major'
composer-production-dependencies:
dependency-type: 'production'
update-types:
- 'minor'
- 'patch'
composer-major-production-dependencies:
dependency-type: 'production'
update-types:
- 'major'

0 comments on commit c3c0bb7

Please sign in to comment.