Skip to content

Commit 77c3b06

Browse files
committed
fix(ci): NO-JIRA use unique heredoc delimiter for GITHUB_OUTPUT
Replace generic EOF delimiter with CLEANUP_PR_BODY to avoid collision if plan file content contains a line reading EOF.
1 parent 7e36a20 commit 77c3b06

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/cleanup-plan-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@ jobs:
6464
BODY="## Automated Plan Cleanup\n\nThis PR removes planning docs that were merged into \`staging\` during development.\n\n### Plans removed\n\n${TABLE}\n---\n\n> **Add highlights here** — anything worth preserving from these plans (key decisions, trade-offs, context for future contributors):\n\n"
6565
6666
{
67-
echo 'pr_body<<EOF'
67+
echo 'pr_body<<CLEANUP_PR_BODY'
6868
printf '%b' "$BODY"
69-
echo 'EOF'
69+
echo 'CLEANUP_PR_BODY'
7070
} >> "$GITHUB_OUTPUT"
7171
7272
git rm -f PLAN-*.md --ignore-unmatch

0 commit comments

Comments
 (0)