From 7837c730c3802d36cbd2c6f9914bc9c2312ef536 Mon Sep 17 00:00:00 2001 From: jurre Date: Thu, 8 Oct 2020 10:23:04 +0200 Subject: [PATCH] Configure Dependabot version updates This configures [Dependabot version updates](https://docs.github.com/en/free-pro-team@latest/github/administering-a-repository/about-github-dependabot-version-updates) for both Bundler and npm dependencies in this repo. When merged, Dependabot will check for npm packages and ruby gems that can be updated, and open up pull requests for these. --- .github/dependabot.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000000..67a0d557e650 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +version: 2 +updates: + - package-ecosystem: "bundler" + directory: "/" + schedule: + interval: "daily" + versioning-strategy: increase + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "daily" + open-pull-requests-limit: 10