From 7b6de161112cc7175a6d8b60588123d9500bdedd Mon Sep 17 00:00:00 2001 From: Hrishi Date: Sun, 3 May 2026 11:47:39 +0530 Subject: [PATCH] chore: add Dependabot config for npm, cargo, and github-actions --- .github/dependabot.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..4efeeab --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,28 @@ +version: 2 +updates: + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "weekly" + open-pull-requests-limit: 5 + groups: + npm-minor-patch: + update-types: ["minor", "patch"] + + - package-ecosystem: "cargo" + directory: "/src-tauri" + schedule: + interval: "weekly" + open-pull-requests-limit: 5 + groups: + cargo-minor-patch: + update-types: ["minor", "patch"] + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + open-pull-requests-limit: 5 + groups: + actions-all: + patterns: ["*"]