From 0678fb84408b89fa8b556d845b1cb53b1ec5f9b0 Mon Sep 17 00:00:00 2001 From: satyakwok Date: Mon, 11 May 2026 01:52:01 +0200 Subject: [PATCH] fix(dependabot): track root package.json, not /scripts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit /scripts only contains read-balance.ts (a standalone TS script), no package.json — dependabot fails internally trying to scan a non-npm directory. Root has the actual deps (Hardhat/Foundry tooling), so point dependabot there. --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 7688c79..da5d565 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -6,7 +6,7 @@ updates: interval: "monthly" - package-ecosystem: "npm" - directory: "/scripts" + directory: "/" schedule: interval: "weekly" open-pull-requests-limit: 3