From 0c46affda9bac842231a01e92d91452c03b60cdc Mon Sep 17 00:00:00 2001 From: Birk Skyum <74932975+birkskyum@users.noreply.github.com> Date: Sun, 17 Dec 2023 07:16:47 +0100 Subject: [PATCH] Add dependabot (#826) It has a low limit on how many PRs it's allowed to open at a time, so it should not flood the repo. --- .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 000000000..2e98e0e14 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,14 @@ +version: 2 +updates: + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "daily" + open-pull-requests-limit: 2 + versioning-strategy: increase + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + open-pull-requests-limit: 2 + versioning-strategy: increase