diff --git a/.dependabot/config.yml b/.dependabot/config.yml deleted file mode 100644 index b3aee67..0000000 --- a/.dependabot/config.yml +++ /dev/null @@ -1,40 +0,0 @@ -# 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" \ No newline at end of file diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..58047a9 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,31 @@ +# Dependabot configuration options : +# https://help.github.com/en/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 + +updates: + + # Required options + - package-ecosystem: npm + directory: "/" + schedule: + interval: weekly + day: saturday + time: "00:00" + timezone: Europe/Paris + + # Behaviour of pull requests + open-pull-requests-limit: 2 + pull-request-branch-name: + separator: "-" + commit-message: + prefix: build + include: scope + + # Metadata of pull requests + reviewers: + - "peopledoc/tribe-js" + + # Control which dependencies are updated + ignore: + - dependency-name: "ember-cli"