From bf2c251f09dedd8f09e55bf3009ea823d2fa8cbb Mon Sep 17 00:00:00 2001 From: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com> Date: Mon, 5 Oct 2020 13:30:14 +0200 Subject: [PATCH] chore: use Dependabot to check for npm updates (#23) Dependabot will check for npm updates each working day (Monday trough Friday). It will label any pull requests with the `dependencies` label. --- .github/dependabot.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..b078ddb --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,8 @@ +version: 2 +updates: + - package-ecosystem: 'npm' + directory: '/' + schedule: + interval: 'daily' + labels: + - 'dependencies'