fix: resolve YAML syntax error in workflow

Replace multiline commit message with multiple -m flags.
Fixes line 124 syntax error.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
TheFlow 2025-10-09 15:09:11 +13:00
parent f107041bd0
commit 7d29b26887

View file

@ -117,12 +117,7 @@ jobs:
# Get commit message from private repo
COMMIT_MSG=$(cd ../tractatus-private && git log -1 --pretty=%B)
git commit -m "docs: sync from private repo
Original commit: $COMMIT_MSG
🤖 Automated sync from private repository
Validated by: scripts/validate-public-sync.js"
git commit -m "docs: sync from private repo" -m "Original commit: $COMMIT_MSG" -m "Automated sync from private repository" -m "Validated by: scripts/validate-public-sync.js"
git push origin main
echo "✅ Changes synced successfully"
@ -139,7 +134,7 @@ Validated by: scripts/validate-public-sync.js"
echo "# Sync Report - $(date -u +%Y-%m-%d)" > sync-report.md
echo "" >> sync-report.md
echo "## Validation Status" >> sync-report.md
echo "- Security Validation: ${{ steps.validation.outcome }}" >> sync-report.md
echo "- Security Validation: ${{ steps.validation.outcome || 'skipped' }}" >> sync-report.md
echo "- Files Synced: $(cd ../tractatus-public && git diff --cached --name-only | wc -l)" >> sync-report.md
echo "" >> sync-report.md
echo "## Changed Files" >> sync-report.md