Skip to content

Commit

Permalink
feat: Implement automated updates with Dependabot (#1451)
Browse files Browse the repository at this point in the history
* Feat: Implement automated updates with Dependabot

* Feat: Implement automated updates with Dependabot #1451

* Feat: Implement automated updates with Dependabot #1451

* Feat: "Feat: Implement automated updates with Dependabot #1451"
  • Loading branch information
Harsh1s authored Dec 5, 2023
1 parent e14bd0d commit c255202
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Configuration for automated dependency updates using Dependabot
version: 2
updates:
# Define the target package ecosystem
- package-ecosystem: "npm"
# Specify the root directory
directory: "/"
# Schedule automated updates to run weekly
schedule:
interval: "weekly"
# Labels to apply to Dependabot PRs
labels:
- "dependencies"
# Specify the target branch for PRs
target-branch: "develop"
# Include all minor updates in a single PR
grouping:
minor:
include:
- "*"
# Customize commit message prefix
commit-message:
prefix: "chore(deps):"

0 comments on commit c255202

Please sign in to comment.