From 370fb264005def9d0282ab481ebd522dc21816e1 Mon Sep 17 00:00:00 2001 From: Brian Cantoni Date: Mon, 20 Jul 2026 10:29:24 -0700 Subject: [PATCH] Add dependabot to watch for Python and Actions updates, create PRs for development --- .github/dependabot.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..38411afcc --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,13 @@ +version: 2 +updates: + - package-ecosystem: "pip" + directory: "/" + target-branch: "development" + schedule: + interval: "weekly" + + - package-ecosystem: "github-actions" + directory: "/" + target-branch: "development" + schedule: + interval: "weekly"