From fd298b599eb5306e30fb529fbb54c4c9b30f7efb Mon Sep 17 00:00:00 2001 From: James Morris <96435344+james-a-morris@users.noreply.github.com> Date: Thu, 27 Oct 2022 16:28:00 -0400 Subject: [PATCH] feat(ci): :sparkles: include dependabot (#402) * feat(ci): :sparkles: include dependabot This change includes the dependabot CI script. Including the dependabot.yml file will trigger the Github Dependabot script to be run daily to check for dependices to be updated. * improve: enforce eol character --- .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 000000000..6ebae6b8e --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,10 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "daily"