From 313b927992c3ae7f4e7e01603daae9718e9db081 Mon Sep 17 00:00:00 2001 From: Jaynel Patiarba Date: Tue, 25 Aug 2026 19:09:20 +0800 Subject: [PATCH] ci: add monthly Dependabot for npm and github-actions --- .github/dependabot.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..4b24917d --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,23 @@ +version: 2 +updates: + # Bun workspace (root lockfile covers all packages/* and examples/*) + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "monthly" + open-pull-requests-limit: 10 + groups: + all-dependencies: + patterns: + - "*" + + # GitHub Actions used in .github/workflows/* + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "monthly" + open-pull-requests-limit: 5 + groups: + actions: + patterns: + - "*"