From b11ac76681e5b2d58ef565a425ec7b0e64e88c3e Mon Sep 17 00:00:00 2001 From: Arjun Komath Date: Mon, 10 Aug 2026 19:23:09 +1000 Subject: [PATCH] Scan web/ directly in React Doctor MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Running the action from the repo root discovered the `web` project but never resolved the root-level baseline diff plan against it, so every PR reported `baselineDegraded` and listed pre-existing issues as new — along with a bogus "add fetch-depth: 0" warning that was already set. Co-Authored-By: Claude Opus 5 --- .github/workflows/react-doctor.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/react-doctor.yml b/.github/workflows/react-doctor.yml index bafa2587..8c98c02b 100644 --- a/.github/workflows/react-doctor.yml +++ b/.github/workflows/react-doctor.yml @@ -30,4 +30,9 @@ jobs: - uses: actions/checkout@v5 with: fetch-depth: 0 + # Scan `web/` directly. Discovery from the repo root finds the project, + # but the baseline diff plan is computed at the root and never resolves + # against it, so every PR degraded to "all issues in changed files". - uses: millionco/react-doctor@v2 + with: + directory: web