Skip to content

Commit 315a9ce

Browse files
feat(dependabot): create configuration file
Create basic configuration file for @dependabot.
1 parent 344985d commit 315a9ce

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

.dependabot/config.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Documentation :
2+
# https://dependabot.com/docs/config-file/
3+
4+
# Validator for Dependabot config file
5+
# https://dependabot.com/docs/config-file/validator/
6+
7+
version: 1
8+
9+
update_configs:
10+
- package_manager: "javascript"
11+
12+
# Where to look for package manifests. Relative to the repository's root.
13+
directory: "/"
14+
15+
# How often to check for non-security updates and when to create pull requests.
16+
# Security updates are always created as soon as possible (i.e., "live").
17+
update_schedule: "monthly"
18+
19+
# How to update manifest version requirements.
20+
# "auto" => version requirements increased if it's an app / range widened if it's a library.
21+
version_requirement_updates: "auto"
22+
23+
# Format of commit messages and pull request titles.
24+
commit_message:
25+
prefix: "build"
26+
include_scope: true
27+
28+
# Reviewers to set on pull requests
29+
default_reviewers:
30+
- "peopledoc/tribe-js"
31+
32+
# Limit which updates are allowed
33+
allowed_updates:
34+
- match:
35+
update_type: "all" # all updates including indirect/sub-dependencies
36+
37+
ignored_updates:
38+
- match:
39+
# Ignore updates of `ember-cli` as we want to take care of these by ourselves
40+
dependency_name: "ember-cli"

0 commit comments

Comments
 (0)