From 2bb055ee45a4f4419a365d416831c7c4be476c02 Mon Sep 17 00:00:00 2001 From: Michael Schilling Date: Fri, 12 Feb 2021 21:54:19 +0100 Subject: [PATCH] feat: add dependabot configuration --- .github/dependabot.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..99d260f0 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,14 @@ +version: 2 +updates: + # Configuration for npm + - package-ecosystem: 'npm' + directory: . + schedule: + # Check the npm registry for updates at 4am UTC + interval: 'daily' + time: '04:00' + open-pull-requests-limit: 20 + target-branch: 'integration/dependabot' + labels: + - 'dependencies' + - 'automerge'