Skip to content

Commit

Permalink
chore: improve dependencies update (#237)
Browse files Browse the repository at this point in the history
Co-authored-by: Christian Kleinbölting <[email protected]>
  • Loading branch information
mpro7 and seakayone authored Sep 10, 2024
1 parent 0252803 commit 487b2d5
Showing 1 changed file with 23 additions and 3 deletions.
26 changes: 23 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,35 @@

version: 2
updates:
- package-ecosystem: github-actions
directory: "/"
- package-ecosystem: "npm"
directory: "/web-frontend"
schedule:
interval: "daily"
interval: "weekly"
commit-message:
prefix: "build(deps)"
groups:
frontend-dependencies:
applies-to: version-updates
patterns:
- "*"
ignore:
- dependency-name: "*"
update-types: ["version-update:semver-major"]
- package-ecosystem: "cargo"
directory: "/"
schedule:
interval: "weekly"
commit-message:
prefix: "build(deps)"
groups:
backend-dependencies:
applies-to: version-updates
patterns:
- "*"
ignore:
# These are peer deps of Cargo and should not be automatically bumped
- dependency-name: "semver"
- dependency-name: "crates-io"
# Ignore major updates for all dependencies
- dependency-name: "*"
update-types: ["version-update:semver-major"]

0 comments on commit 487b2d5

Please sign in to comment.