Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Commit f0abe40

Browse files
committed
whitelist a bunch of dependencies (mostly only used in tests) to allow dependabot to auto-merge these updates
1 parent 7ffd964 commit f0abe40

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.dependabot/config.yml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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: "live"
8+
9+
# Automerge all whitelisted dependency updates (after CI passes)
10+
automerged_updates:
11+
- match:
12+
dependency_name: "*mocha*"
13+
update_type: "all"
14+
- match:
15+
dependency_name: "chai*"
16+
update_type: "all"
17+
- match:
18+
dependency_name: "enzyme*"
19+
update_type: "all"
20+
- match:
21+
dependency_name: "eslint*"
22+
update_type: "all"
23+
- match:
24+
dependency_name: "sinon"
25+
update_type: "all"
26+
- match:
27+
dependency_name: "semver"
28+
update_type: "all"
29+
- match:
30+
dependency_name: "test-until"
31+
update_type: "all"

0 commit comments

Comments
 (0)