A CLI for publishing standard.site documents to ATProto

fix: attribute action commits to the last commit author

+2 -2
+2 -2
action.yml
··· 81 shell: bash 82 working-directory: ${{ inputs.working-directory }} 83 run: | 84 - git config user.name "github-actions[bot]" 85 - git config user.email "41898282+github-actions[bot]@users.noreply.github.com" 86 git add -A *.md **/*.md || true 87 if git diff --cached --quiet; then 88 echo "No changes to commit"
··· 81 shell: bash 82 working-directory: ${{ inputs.working-directory }} 83 run: | 84 + git config user.name "$(git log -1 --format='%an')" 85 + git config user.email "$(git log -1 --format='%ae')" 86 git add -A *.md **/*.md || true 87 if git diff --cached --quiet; then 88 echo "No changes to commit"