From 41be4e0e30c79b40703902efbbcb0cc91e101769 Mon Sep 17 00:00:00 2001 From: CloakHQ Date: Sun, 24 May 2026 23:17:45 +0200 Subject: [PATCH] chore(ci): add pip and npm ecosystems to Dependabot --- .github/dependabot.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index d15c975..b394280 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -8,3 +8,21 @@ updates: actions: patterns: - "*" + + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: "weekly" + groups: + python: + patterns: + - "*" + + - package-ecosystem: "npm" + directory: "/js" + schedule: + interval: "weekly" + groups: + javascript: + patterns: + - "*"