Skip to content

Commit 88bfa71

Browse files
committed
feat: add dependabot config
1 parent 16589bb commit 88bfa71

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/dependabot.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Basic dependabot.yml file with
2+
# minimum configuration for two package managers
3+
4+
version: 2
5+
updates:
6+
# Enable version updates for npm
7+
- package-ecosystem: "npm"
8+
# Look for `package.json` and `lock` files in the `root` directory
9+
directory: "/"
10+
# Check the npm registry for updates every day (weekdays)
11+
schedule:
12+
interval: "daily"
13+
target-branch: dev
14+
15+
# Enable version updates for GitHub Actions
16+
- package-ecosystem: 'github-actions'
17+
directory: '/'
18+
schedule:
19+
interval: 'daily'
20+
time: '11:00'
21+
commit-message:
22+
prefix: 'chore'
23+
prefix-development: 'chore'
24+
include: 'scope'
25+
target-branch: dev

0 commit comments

Comments
 (0)