Skip to content

Commit 3ceebd5

Browse files
authored
chore: hotfix use git add-all
1 parent b9a362e commit 3ceebd5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/generate-transcript.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ jobs:
4848
run: |
4949
if [ -n "$(git status --porcelain)" ]; then
5050
echo "Files changed."
51-
git commit -a -m 'Add ${{ github.event.issue.title }} transcript'
51+
git add --all
52+
git commit -m 'Add ${{ github.event.issue.title }} transcript'
5253
echo "TRANSCRIPT_GENERATED=true" >> $GITHUB_ENV
5354
fi
5455

0 commit comments

Comments
 (0)