From e5568a0249dc1b06bbf6c44592447b20deff792b Mon Sep 17 00:00:00 2001 From: Parker Brown <17183625+parkerbxyz@users.noreply.github.com> Date: Mon, 21 Aug 2023 21:44:26 -0700 Subject: [PATCH] ci(dependabot config): initial version (#15) Configures Dependabot version updates, which enables Dependabot to open pull requests automatically to keep dependencies up-to-date when new versions are available. --- .github/dependabot.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..d83175c --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,10 @@ +version: 2 +updates: + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "monthly" + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "monthly"