Skip to content

Commit 6b29087

Browse files
Fix YAML syntax error in workflow file
The emoji in the commit message was causing a YAML parsing error. Changed to use separate -m flags instead of multi-line string. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 1883aa4 commit 6b29087

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/scrape-and-deploy.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,8 @@ jobs:
6868
else
6969
DATE=$(date +%Y-%m-%d)
7070
SOURCE_COUNT=$(find data -name "*.json" | wc -l | tr -d ' ')
71-
git commit -m "chore: update prices for $DATE ($SOURCE_COUNT sources)
72-
73-
🤖 Generated with GitHub Actions"
74-
git push https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git HEAD:main
71+
git commit -m "chore: update prices for $DATE ($SOURCE_COUNT sources)" -m "Generated with GitHub Actions"
72+
git push
7573
fi
7674
7775
- name: Build frontend

0 commit comments

Comments
 (0)