Skip to content

Commit f4a7198

Browse files
Fix CI: replace heredoc with echo for YAML compatibility
Heredoc REPORTEOF was indented inside YAML run block, preventing shell from recognizing the terminator. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent f0f2c8f commit f4a7198

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

.github/workflows/skill-shield-ci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,9 +131,7 @@ $FINDINGS_LIST
131131
done
132132

133133
# Write report for next step
134-
cat > /tmp/scan-report.txt << REPORTEOF
135-
$REPORT
136-
REPORTEOF
134+
echo "$REPORT" > /tmp/scan-report.txt
137135
echo "overall_pass=$OVERALL_PASS" >> $GITHUB_OUTPUT
138136
echo "lowest_score=$LOWEST_SCORE" >> $GITHUB_OUTPUT
139137

0 commit comments

Comments
 (0)