From 97270de0252dbb9d49803023e7a3a2c9601fd1ef Mon Sep 17 00:00:00 2001 From: Jiayuan Zhang Date: Sun, 15 Feb 2026 02:03:35 +0800 Subject: [PATCH] chore: add dependabot for automated dependency updates Configure weekly npm and GitHub Actions dependency updates. Groups dev and production dependencies separately for easier review. Co-Authored-By: Claude Opus 4.6 --- .github/dependabot.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..1cce49a7 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,17 @@ +version: 2 +updates: + - package-ecosystem: npm + directory: / + schedule: + interval: weekly + open-pull-requests-limit: 10 + groups: + dev-dependencies: + dependency-type: development + production-dependencies: + dependency-type: production + + - package-ecosystem: github-actions + directory: / + schedule: + interval: weekly