From fbda5ee0df5a9870108f91b1ffd3e0ea095e0c8a Mon Sep 17 00:00:00 2001 From: Nathan Rajlich Date: Thu, 12 Mar 2026 13:58:45 -0700 Subject: [PATCH] ci: fix git identity for changesets Version Packages commit Set setupGitUser: false on changesets/action to prevent it from overwriting our git config with the hardcoded github-actions[bot] identity. The git identity is now configured in a prior step using the app-slug output from actions/create-github-app-token. --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 567d4efebd..3941468083 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -65,6 +65,7 @@ jobs: version: pnpm ci:version publish: pnpm ci:publish createGithubReleases: false + setupGitUser: false env: GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}