Skip to content
This repository was archived by the owner on Oct 4, 2020. It is now read-only.

Commit d724b6c

Browse files
committed
Add dependabot support w/ .dependabot/config.yml
- Add [dependabot] support - Need to activate account for this project at https://app.dependabot.com/auth/sign-up - Keep dependencies up-to-date automatically - Not currently configured for auto-merging of PRs
1 parent adbeadd commit d724b6c

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.dependabot/config.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
version: 1
2+
update_configs:
3+
# Keep package.json (& lockfiles) up to date as soon as
4+
# new versions are published to the npm registry
5+
- package_manager: "javascript"
6+
directory: "/"
7+
update_schedule: "daily"
8+
default_labels:
9+
- "dependabot"
10+
- "npm bump"
11+
- allowed_updates:
12+
- match:
13+
update_type: "security"
14+
- match:
15+
dependency_type: "direct"
16+
- commit_message:
17+
prefix: "update"
18+
include_scope: true

0 commit comments

Comments
 (0)