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:
parent
b7d5129861
commit
a3f7f04e47
1 changed files with 2 additions and 7 deletions
9
.github/workflows/sync-public-docs.yml
vendored
9
.github/workflows/sync-public-docs.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue