From 0dcabafb1da5f4d0d81bada4fb9a72bd5f8f3399 Mon Sep 17 00:00:00 2001 From: Jaynel Patiarba Date: Tue, 25 Aug 2026 18:51:33 +0800 Subject: [PATCH] ci(dependabot): add monthly dependency updates for npm and github-actions --- .github/dependabot.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000000..a0d53040c6 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,27 @@ +version: 2 +updates: + # JavaScript/TypeScript dependencies (Bun workspaces, root manifest) + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "monthly" + open-pull-requests-limit: 10 + commit-message: + prefix: "[chore]" + groups: + npm-dependencies: + patterns: + - "*" + + # GitHub Actions used in workflows + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "monthly" + open-pull-requests-limit: 10 + commit-message: + prefix: "[chore]" + groups: + github-actions: + patterns: + - "*"