From 79c8416f7be47e442d67bdb6088e892e26d07f99 Mon Sep 17 00:00:00 2001 From: bluwy Date: Tue, 23 Sep 2025 10:37:25 +0800 Subject: [PATCH] chore(publish): set bombshell-bot as git user --- .github/workflows/publish.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 58235d9..be04194 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -31,6 +31,11 @@ jobs: ref: ${{ github.head_ref }} token: ${{ steps.bot-token.outputs.token }} + - name: Setup git user + run: | + git config --global user.name "bombshell-bot[bot]" + git config --global user.email "187071675+bombshell-bot[bot]@users.noreply.github.com" + - name: Setup PNPM uses: pnpm/action-setup@v4 @@ -58,6 +63,7 @@ jobs: publish: pnpm exec changeset publish commit: "[ci] release" title: "[ci] release" + setupGitUser: false env: GITHUB_TOKEN: ${{ steps.bot-token.outputs.token }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }}