Skip to content

Commit

Permalink
feat: add dependabot config
Browse files Browse the repository at this point in the history
  • Loading branch information
emmanuelm41 committed Aug 16, 2024
1 parent a7f8055 commit b49d984
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
`# Basic dependabot.yml file with
# minimum configuration for two package managers
version: 2
updates:
# Enable version updates for npm
- package-ecosystem: "npm"
# Look for `package.json` and `lock` files in the `root` directory
directory: "/"
# Check the npm registry for updates every day (weekdays)
schedule:
interval: "daily"
target-branch: dev

# Enable version updates for GitHub Actions
- package-ecosystem: 'github-actions'
directory: '/'
schedule:
interval: 'daily'
time: '11:00'
commit-message:
prefix: 'chore'
prefix-development: 'chore'
include: 'scope'
target-branch: dev

0 comments on commit b49d984

Please sign in to comment.