Skip to content

Commit 6caa9cb

Browse files
committed
fix(workflow): fix missing identity in review workflow
1 parent c48e299 commit 6caa9cb

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/opencode-review.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ jobs:
1616
- uses: actions/checkout@v6
1717
with:
1818
persist-credentials: false
19+
20+
- name: Configure git identity
21+
run: |
22+
git config --global user.email "github-actions[bot]@users.noreply.github.com"
23+
git config --global user.name "github-actions[bot]"
24+
1925
- uses: anomalyco/opencode/github@latest
2026
env:
2127
OPENCODE_API_KEY: ${{ secrets.OPENCODE_API_KEY }}

0 commit comments

Comments
 (0)