From 63346fc3a5579d612104daa083523edb7eee5add Mon Sep 17 00:00:00 2001 From: indexzero Date: Tue, 14 Apr 2026 13:16:33 -0400 Subject: [PATCH] fix(release) configure git identity for release commits The release workflow needs a git user identity to commit the version bump and changelog update. Use the github-actions[bot] identity. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/release.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bc1df60..fde1ec7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,6 +37,11 @@ jobs: registry-url: 'https://registry.npmjs.org' cache: 'pnpm' + - name: Configure git identity + run: | + git config user.name "github-actions[bot]" + git config user.email "41898282+github-actions[bot]@users.noreply.github.com" + - name: Install dependencies run: pnpm install --frozen-lockfile