Skip to content

Commit

Permalink
ci: add dependabot
Browse files Browse the repository at this point in the history
  • Loading branch information
JustSamuel committed Oct 18, 2024
1 parent a4603b1 commit 6c16497
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
version: 2
updates:
- package-ecosystem: "npm" # Specify npm as the package manager
directories:
- "apps/point-of-sale"
- "apps/dashboard"
- "lib/common"
schedule:
interval: "weekly" # Set the update schedule to weekly
groups:
production-dependencies:
patterns:
- ".*" # Match all dependencies for production group
dependency-type: "production"
development-dependencies:
patterns:
- ".*" # Match all dependencies for development group
dependency-type: "development"
commit-message:
prefix: "chore(deps)"
versioning-strategy: "increase" # This limits updates to patch and minor versions
ignore:
- dependency-name: "*"
update-types: ["version-update:semver-major"] # Ignore major updates

0 comments on commit 6c16497

Please sign in to comment.