Skip to content

Commit b3c6337

Browse files
committed
Fix YAML syntax error in update-changelog workflow
Replaced heredoc syntax with echo commands to avoid YAML parser issues.
1 parent c39a9b1 commit b3c6337

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/update-changelog.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,8 @@ jobs:
8787
fi
8888
8989
# Create temporary file with new unreleased section
90-
cat > /tmp/unreleased.txt <<'EOF'
91-
## [Unreleased]
92-
93-
EOF
90+
echo "## [Unreleased]" > /tmp/unreleased.txt
91+
echo "" >> /tmp/unreleased.txt
9492
9593
# Add Fixed section if not empty
9694
if [ -n "${{ steps.commits.outputs.fixed }}" ]; then

0 commit comments

Comments
 (0)