From 5513af3b63446a968e011b47c88627e98d1347b1 Mon Sep 17 00:00:00 2001 From: Steve Yegge Date: Wed, 29 Oct 2025 19:16:43 -0700 Subject: [PATCH] Fix CI: Configure git identity for tests --- .github/workflows/ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 84c9fae1..dc3db101 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,6 +18,11 @@ jobs: with: go-version: '1.24' + - name: Configure Git + run: | + git config --global user.name "CI Bot" + git config --global user.email "ci@beads.test" + - name: Build run: go build -v ./cmd/bd @@ -55,6 +60,11 @@ jobs: with: go-version: '1.24' + - name: Configure Git + run: | + git config --global user.name "CI Bot" + git config --global user.email "ci@beads.test" + - name: Build run: go build -v ./cmd/bd