From c3c73c5f02f6e11614375ea1e3b5cb12e2067876 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nuno=20G=C3=B3is?= Date: Wed, 2 Jul 2025 14:46:58 +0100 Subject: [PATCH] chore: new attempt --- .github/workflows/ai-flag-cleanup-pr.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ai-flag-cleanup-pr.yml b/.github/workflows/ai-flag-cleanup-pr.yml index 83463c97e2..bec19cc978 100644 --- a/.github/workflows/ai-flag-cleanup-pr.yml +++ b/.github/workflows/ai-flag-cleanup-pr.yml @@ -168,8 +168,9 @@ jobs: - name: Create prompt id: create_prompt run: | - const body = `${{ fromJson(steps.get_issue.outputs.result).body }}`; - return `Based on the issue description below, refactor the codebase to permanently apply the desired outcome for this feature flag (e.g. enable, keep variant, or discard), by removing all conditional checks and dead branches, preserving only the correct code path. + ISSUE_BODY="${{ fromJson(steps.get_issue.outputs.result).body }}" + cat < cleanup_prompt.txt + Based on the issue description below, refactor the codebase to permanently apply the desired outcome for this feature flag (e.g. enable, keep variant, or discard), by removing all conditional checks and dead branches, preserving only the correct code path. After making the changes, provide a **Markdown summary** of what was changed, written for a developer reviewing the PR. Keep it clear, focused, and readable. Use the exact following format (including start & end separator lines, headings, bullets, emojis): @@ -196,9 +197,11 @@ jobs: === AI Flag Cleanup Summary End === \`\`\` - --- Issue Description --- - ${body}`; + $ISSUE_BODY + EOF + + echo "prompt-file=cleanup_prompt.txt" >> $GITHUB_OUTPUT - name: Write prompt run: |