Skip to content

Commit c1a53fd

Browse files
committed
fix: add git configuration to workflow to prevent commit failures
Adds git user.name and user.email configuration to prevent the 'Author identity unknown' error that was causing git CLI commits to fail.
1 parent fb7ed98 commit c1a53fd

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/buddy-update.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,11 @@ jobs:
7474
- name: Build buddy-bot
7575
run: bun run build
7676

77+
- name: Configure Git
78+
run: |
79+
git config --global user.name "buddy-bot[bot]"
80+
git config --global user.email "buddy-bot[bot]@users.noreply.github.com"
81+
7782
- name: Verify Composer setup
7883
run: |
7984
echo "🔍 Verifying Composer and PHP setup..."

0 commit comments

Comments
 (0)