tangled
alpha
login
or
join now
apoena.dev
/
sequoia
forked from
stevedylan.dev/sequoia
A CLI for publishing standard.site documents to ATProto
0
fork
atom
overview
issues
pulls
pipelines
fix: attribute action commits to the last commit author
Julien Calixte
2 days ago
6d470d3f
09f453f5
+2
-2
1 changed file
expand all
collapse all
unified
split
action.yml
+2
-2
action.yml
···
81
81
shell: bash
82
82
working-directory: ${{ inputs.working-directory }}
83
83
run: |
84
84
-
git config user.name "github-actions[bot]"
85
85
-
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
84
84
+
git config user.name "$(git log -1 --format='%an')"
85
85
+
git config user.email "$(git log -1 --format='%ae')"
86
86
git add -A *.md **/*.md || true
87
87
if git diff --cached --quiet; then
88
88
echo "No changes to commit"