From 164a391243a1ef48e33fcdfb7da4e11f4d6727c2 Mon Sep 17 00:00:00 2001 From: tigdav <47061880+tigdav@users.noreply.github.com> Date: Thu, 4 Jun 2026 20:36:21 +0300 Subject: [PATCH] chore(deps): add Dependabot configuration --- .github/dependabot.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..1788df6 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,19 @@ +version: 2 +updates: + # Python dependencies (requirements.txt / requirements-dev.txt) + - package-ecosystem: "pip" + directory: "/backend" + schedule: + interval: "weekly" + open-pull-requests-limit: 5 + commit-message: + prefix: "chore(deps)" + + # GitHub Actions used in workflows + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + open-pull-requests-limit: 5 + commit-message: + prefix: "ci(deps)"