From de81e413368f5be87bc045b3afe80183e9de3f16 Mon Sep 17 00:00:00 2001 From: Ed Morley <501702+edmorley@users.noreply.github.com> Date: Mon, 10 Aug 2020 12:30:32 +0100 Subject: [PATCH] Add config file for Dependabot (#1037) GitHub are gradually integrating Dependabot into GitHub as a native feature. The native integration now supports updating not only security updates, but all dependencies - however this must be explicitly enabled by adding a config file: https://docs.github.com/en/github/administering-a-repository/enabling-and-disabling-version-updates The config options are described here: https://docs.github.com/en/github/administering-a-repository/configuration-options-for-dependency-updates Closes @W-7937066@. [skip changelog] --- .github/dependabot.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..a2623d1 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,15 @@ +version: 2 +updates: + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: "weekly" + labels: + - "c: dependencies" + + - package-ecosystem: "bundler" + directory: "/" + schedule: + interval: "weekly" + labels: + - "c: dependencies"