From 6c825b1c7371372fb41a967d4c2e59473038a1c8 Mon Sep 17 00:00:00 2001 From: Shaun Arman Date: Sun, 31 May 2026 15:18:02 -0500 Subject: [PATCH] fix(ci): remove remaining printf -- calls in Analyze with LLM step --- .gitea/workflows/pr-review.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/pr-review.yml b/.gitea/workflows/pr-review.yml index 824edcdc..f3edfbe1 100644 --- a/.gitea/workflows/pr-review.yml +++ b/.gitea/workflows/pr-review.yml @@ -158,13 +158,13 @@ jobs: printf 'Files changed: %s\n\n' "$CHANGED_FILES" printf '---\n' cat /tmp/codebase_index.txt - printf -- '---\n\n' + printf '---\n\n' printf '## Changed file contents\n\n' printf 'Each section is the COMPLETE, FINAL file after PR changes (not a diff).\n' printf 'Files over 500 lines show only changed sections with surrounding context.\n\n' printf '---\n' cat /tmp/pr_context.txt - printf -- '---\n\n' + printf '---\n\n' printf '## Instructions\n\n' printf 'Before raising any finding:\n' printf '1. Confirm every symbol you cite exists in the CODEBASE INDEX or file\n'