From 84adfbdebec83b304331257319a052af6a210e63 Mon Sep 17 00:00:00 2001 From: Landon Cox Date: Sat, 21 Mar 2026 11:21:56 -0700 Subject: [PATCH] fix: escape handlebars pattern in rendering verifier prompt The literal `{{#if ...}}` text in the workflow markdown was being processed by the template rendering engine during activation. The `...` became an unreplaced placeholder (__GH_AW______), causing the prompt placeholder validation step to fail on every run (43/43). Reword the text to avoid the {{#if pattern entirely. Fixes #22168 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/workflows/daily-rendering-scripts-verifier.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/daily-rendering-scripts-verifier.md b/.github/workflows/daily-rendering-scripts-verifier.md index f87ed1a5127..66da4700700 100644 --- a/.github/workflows/daily-rendering-scripts-verifier.md +++ b/.github/workflows/daily-rendering-scripts-verifier.md @@ -308,7 +308,7 @@ Review the outputs from Phases 4 and 5 and determine: ### Rendering Issues to Look For - **Test case failures**: Any of the render_template tests fail → fix the rendering logic -- **Conditional blocks not handled**: `{{#if ...}}` blocks are left in output → fix template processing +- **Conditional blocks not handled**: Handlebars if-blocks are left in output → fix template processing - **Blank line artifacts**: Extra blank lines around removed blocks → check cleanup logic ### No Issues Found