File tree Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change
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"
You can’t perform that action at this time.
0 commit comments