Skip to content

Commit

Permalink
chore: Group dependabot PRs (#99)
Browse files Browse the repository at this point in the history
Signed-off-by: Ian Lewis <[email protected]>
  • Loading branch information
ianlewis authored Feb 11, 2025
1 parent 12d087f commit 8600617
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,54 @@ updates:
directory: "/"
schedule:
interval: "monthly"
groups:
# Group all dependencies with minor or patch version updates into one PR.
# Security updates and major updates are on separate PRs
all-dependencies:
applies-to: "version-updates"
patterns:
- "*"
update-types:
- "minor"
- "patch"

- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "monthly"
groups:
# Group all dependencies by with minor or patch version updates into one
# PR with production and development dependencies grouped into separate
# PRs.
# All security updates and major updates are on separate PRs
production-dependencies:
dependency-type: "production"
applies-to: "version-updates"
patterns:
- "*"
update-types:
- "minor"
- "patch"
development-dependencies:
dependency-type: "development"
applies-to: "version-updates"
patterns:
- "*"
update-types:
- "minor"
- "patch"

- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "monthly"
groups:
# Group all dependencies with minor or patch version updates into one PR.
# Security updates and major updates are on separate PRs
all-dependencies:
applies-to: "version-updates"
patterns:
- "*"
update-types:
- "minor"
- "patch"

0 comments on commit 8600617

Please sign in to comment.