From f20d02b0df5c4925370de3761f6420747d8bd0a5 Mon Sep 17 00:00:00 2001 From: "John L. Villalovos" Date: Sun, 20 Aug 2023 08:41:06 -0700 Subject: [PATCH] chore: add `dependabot.yml` to enable automatic PRs Add a basic `dependabot.yml` so that PRs will be automatically generated to update the versions of the dependencies on a weekly basis. More information here: https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuring-dependabot-version-updates Once this is merged then Dependabot will propose PRs to update dependencies. --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..6a7695c0 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: "weekly"