Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JS-241 - Dependabot : create a config file #8

Merged
merged 1 commit into from
Mar 30, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions .dependabot/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# Documentation :
# https://dependabot.com/docs/config-file/

# Validator for Dependabot config file
# https://dependabot.com/docs/config-file/validator/

version: 1

update_configs:
- package_manager: "javascript"

# Where to look for package manifests. Relative to the repository's root.
directory: "/"

# How often to check for non-security updates and when to create pull requests.
# Security updates are always created as soon as possible (i.e., "live").
update_schedule: "monthly"

# How to update manifest version requirements.
# "auto" => version requirements increased if it's an app / range widened if it's a library.
version_requirement_updates: "auto"

# Format of commit messages and pull request titles.
commit_message:
prefix: "build"
include_scope: true

# Reviewers to set on pull requests
default_reviewers:
- "peopledoc/tribe-js"

# Limit which updates are allowed
allowed_updates:
- match:
update_type: "all" # all updates including indirect/sub-dependencies

ignored_updates:
- match:
# Ignore updates of `ember-cli` as we want to take care of these by ourselves
dependency_name: "ember-cli"