From 66c67eb5586af3f9169d7869151ba8a13e0e0bef Mon Sep 17 00:00:00 2001 From: k-j-kim <17989954+k-j-kim@users.noreply.github.com> Date: Thu, 23 Apr 2026 10:13:37 -0700 Subject: [PATCH] chore: add dependabot config for root npm dependencies only (#222) Excludes /samples directories from dependency updates by only configuring the root directory for monitoring. --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..aff82a1 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "weekly"