From fe285dc192fd93f086d3b6c3c0d57e53e2e3f4b2 Mon Sep 17 00:00:00 2001 From: Nick Bolton Date: Thu, 12 Feb 2026 13:28:22 +0000 Subject: [PATCH] ci: fix reference to nonexistent $dir var in ci-comment workflow --- .github/workflows/ci-comment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-comment.yml b/.github/workflows/ci-comment.yml index 94857a1d1..0db22bea4 100644 --- a/.github/workflows/ci-comment.yml +++ b/.github/workflows/ci-comment.yml @@ -65,7 +65,7 @@ jobs: run: | ls -R - files=$(find $dir -type f) + files=$(find summaries -type f 2>/dev/null || true) if [ -z "$files" ]; then echo "No files found in dir: $dir" exit 0