From 87c2797340304e6355da39d5bb06c0435d24c8bd Mon Sep 17 00:00:00 2001 From: Birditch <73741466+Birditch@users.noreply.github.com> Date: Sat, 2 May 2026 00:51:02 -0400 Subject: [PATCH] ci: configure dependabot for pip + github-actions --- .github/dependabot.yml | 45 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..ee91ed4 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,45 @@ +version: 2 + +updates: + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: "weekly" + day: "monday" + time: "09:00" + timezone: "America/New_York" + open-pull-requests-limit: 5 + labels: + - "dependencies" + - "python" + commit-message: + prefix: "deps" + include: "scope" + groups: + runtime: + patterns: + - "*" + exclude-patterns: + - "pytest*" + - "ruff" + - "black" + - "mypy" + dev: + patterns: + - "pytest*" + - "ruff" + - "black" + - "mypy" + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + day: "monday" + time: "09:00" + timezone: "America/New_York" + labels: + - "dependencies" + - "ci" + commit-message: + prefix: "ci"