Skip to content

Commit e2d7458

Browse files
authored
feat: try enabling dependabot to keep dependencies up to date (#74)
* feat: try enabling dependabot to keep dependencies up to date * fix: add missing key in dependabot.yml
1 parent 21ccfbf commit e2d7458

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/dependabot.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Dependabot config.
2+
# Keep NPM and Composer packages up-to-date.
3+
# Let's start out with daily updates and then drop back to less frequent intervals after everything is up-to-date.
4+
5+
version: 2
6+
updates:
7+
# Enable version updates for npm
8+
- package-ecosystem: 'npm'
9+
# Look for `package.json` and `lock` files in the `root` directory
10+
directory: '/'
11+
# Check the npm registry for updates every day (weekdays)
12+
schedule:
13+
interval: 'daily'
14+
15+
# Enable version updates for Composer
16+
- package-ecosystem: 'composer'
17+
# Look for a `composer.lock` in the `root` directory
18+
directory: '/'
19+
# Check for updates every day (weekdays)
20+
schedule:
21+
interval: 'daily'

0 commit comments

Comments
 (0)