Skip to content

Commit

Permalink
better dependency grouping for dependabot (#495)
Browse files Browse the repository at this point in the history
Signed-off-by: Brian DeHamer <[email protected]>
  • Loading branch information
bdehamer authored Oct 20, 2023
1 parent ffc362f commit 1f866aa
Showing 1 changed file with 18 additions and 6 deletions.
24 changes: 18 additions & 6 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,26 @@ updates:
versioning-strategy: auto
open-pull-requests-limit: 10
groups:
dev-dependencies:
patterns:
- "@types/*"
- "@typescript-eslint/*"
- "eslint*"
- "prettier"
prod-deps:
dependency-type: "production"
update-types:
- "minor"
- "patch"
exclude-patterns:
- "tuf-js"
- "@tufjs/*"
dev-deps:
dependency-type: "development"
update-types:
- "minor"
- "patch"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: daily
open-pull-requests-limit: 10
groups:
minor-patch:
update-types:
- "minor"
- "patch"

0 comments on commit 1f866aa

Please sign in to comment.