From fafb7f5e495d43b11a12028bdfd9e96efcc53f03 Mon Sep 17 00:00:00 2001 From: James Cole Date: Fri, 17 Jul 2020 19:16:05 +0200 Subject: [PATCH] Add dependabot --- .github/dependabot.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000000..5488122d1c --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,26 @@ +version: 2 +updates: + + # composer updates + - package-ecosystem: "composer" + directory: "/" # Location of package manifests + target-branch: develop + labels: bug + schedule: + interval: "daily" + + # yarn / JS updates + - package-ecosystem: "npm" + directory: "/" + target-branch: develop + labels: bug + schedule: + interval: "daily" + + # yarn / JS updates for new frontend + - package-ecosystem: "npm" + directory: "/frontend" + target-branch: develop + labels: bug + schedule: + interval: "daily" \ No newline at end of file