From cc8815624a9505747ee66a8aa2c0dc46eae8f4ee Mon Sep 17 00:00:00 2001 From: Danilo Woznica Date: Wed, 3 Jan 2024 15:57:22 +0000 Subject: [PATCH] fix: Update git user settings (#1052) Update the git user name and email in the release workflow --- .github/workflows/release.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c72aa0781..c30ae4c0a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -56,6 +56,7 @@ jobs: with: # pulls all commits (needed for lerna / semantic release to correctly version) fetch-depth: "0" + token: ${{ secrets.CODESANDBOT_TOKEN }} - name: Setup | Authenticate with Registry run: echo //registry.npmjs.org/:_authToken=${NPM_TOKEN} > .npmrc @@ -72,8 +73,8 @@ jobs: - name: Setup | Configure git user run: | - git config user.name 'github-actions[bot]' - git config user.email 'github-actions[bot]@users.noreply.github.com' + git config user.name 'codesandbot[bot]' + git config user.email 'codesandbot[bot]@users.noreply.github.com' - name: Install dependencies and cache uses: bahmutov/npm-install@v1