From 0c4b7fb38285c78a7c9f36b3fe721a841cbed8d7 Mon Sep 17 00:00:00 2001 From: Roman Date: Sat, 27 Jun 2026 09:40:40 +0800 Subject: [PATCH] fix: exclude corpus artifacts from summary --- .github/workflows/corpus-update.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/corpus-update.yml b/.github/workflows/corpus-update.yml index a5ed6c3f..22a99c4e 100644 --- a/.github/workflows/corpus-update.yml +++ b/.github/workflows/corpus-update.yml @@ -306,9 +306,9 @@ jobs: OUTSIDE="$RUNNER_TEMP/outside.txt" : > "$UNUSUAL"; : > "$OUTSIDE" - # Scan the WHOLE working tree (not just corpus/) so anything touched - # outside corpus/ is surfaced for the reviewer. - mapfile -t changes < <(git status --porcelain --untracked-files=all) + # Scan the working tree (not just corpus/) so anything touched outside + # corpus/ is surfaced for the reviewer. Exclude corpus-artifacts. + mapfile -t changes < <(git status --porcelain --untracked-files=all -- ':(exclude)corpus-artifacts') added=0; deleted=0; modified=0; other=0 declare -A tgt_add tgt_del tgt_mod