fix: missing close to if in GitHub Actions workflow

This commit is contained in:
2026-01-20 19:14:40 -05:00
parent 578f9ee146
commit 48c633f8da

View File

@@ -33,8 +33,10 @@ jobs:
git config user.name "Ares-Bot"
git config user.email "ares@beane.me"
git add README.md
if git diff --staged --quiet; then
echo "No changes"
echo "No changes detected."
else
git commit -m "chore: sync code velocity to $FORMATTED_LOC LOC [skip ci]"
git push http://${{ secrets.GITHUB_TOKEN }}@gitea-http:3000/${{ github.repository }}.git ${{ github.ref_name }}
git push http://${{ secrets.GITHUB_TOKEN }}@gitea-http:3000/${{ github.repository }}.git main
fi