From a03851777c229909c8d12dd1ff79ff1558359c13 Mon Sep 17 00:00:00 2001 From: Lakshman Patel Date: Tue, 25 Aug 2026 06:00:53 +0530 Subject: [PATCH] chore: add Dependabot for pip and GitHub Actions Weekly pip updates with semver-patch ignore rule to respect pyproject.toml constraints. Also tracks GitHub Actions. --- .github/dependabot.yml | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..8f23b91 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,40 @@ +version: 2 +updates: + - package-ecosystem: pip + directory: / + schedule: + interval: weekly + day: monday + time: "09:00" + timezone: UTC + open-pull-requests-limit: 10 + labels: + - "dependencies" + - "python" + - "sdk" + commit-message: + prefix: "deps" + include: scope + groups: + production-dependencies: + dependency-type: production + development-dependencies: + dependency-type: development + # Ignore patches that conflict with pyproject.toml version constraints + ignore: + - dependency-name: "*" + update-types: ["version-update:semver-patch"] + - package-ecosystem: github-actions + directory: / + schedule: + interval: weekly + day: monday + time: "09:00" + timezone: UTC + open-pull-requests-limit: 5 + labels: + - "dependencies" + - "github-actions" + commit-message: + prefix: "ci" + include: scope