From 089a6e744840f54ed075ef37e53a4a63e4d6af1c Mon Sep 17 00:00:00 2001 From: Woonggi Min Date: Tue, 16 Jun 2026 12:15:18 +0900 Subject: [PATCH] chore: add .github/dependabot.yml for automated dependency updates Add Dependabot configuration covering npm (weekly, max 5 open PRs) and github-actions (weekly) ecosystems so security patches and version bumps are tracked automatically without manual effort. Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/dependabot.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..0980a40 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +version: 2 +updates: + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "weekly" + open-pull-requests-limit: 5 + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly"