Skip to content

Commit

Permalink
ci(dependabot): only group minor and patch updates (#192)
Browse files Browse the repository at this point in the history
  • Loading branch information
parkerbxyz authored Dec 20, 2024
1 parent 6f99576 commit 26a5f36
Showing 1 changed file with 22 additions and 11 deletions.
33 changes: 22 additions & 11 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,30 @@
version: 2
updates:
- package-ecosystem: "npm"
directory: "/"
- package-ecosystem: 'npm'
directory: '/'
schedule:
interval: "monthly"
interval: 'monthly'
groups:
production-dependencies:
dependency-type: "production"
dependency-type: 'production'
update-types:
- minor
- patch
development-dependencies:
dependency-type: "development"
dependency-type: 'development'
update-types:
- minor
- patch
commit-message:
prefix: "fix"
prefix-development: "build"
include: "scope"
- package-ecosystem: "github-actions"
directory: "/"
prefix: 'fix'
prefix-development: 'build'
include: 'scope'
- package-ecosystem: 'github-actions'
directory: '/'
schedule:
interval: "monthly"
interval: 'monthly'
groups:
github-actions:
update-types:
- minor
- patch

0 comments on commit 26a5f36

Please sign in to comment.