From 39b542a6f7111ddd3eff7092498827e01c3f53c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Garapich?= Date: Fri, 22 Dec 2023 15:39:57 +0100 Subject: [PATCH] fix(ci): use dedicated token for automatic releases (#131) --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e099f6a..bbe52b2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,13 +18,13 @@ jobs: - name: Install release-it run: npm install --global release-it @release-it/conventional-changelog - + - name: Set git identity run: | - git config user.name "${GITHUB_ACTOR}" - git config user.email "${GITHUB_ACTOR}@users.noreply.github.com" + git config user.name "release bot" + git config user.email "release-bot@users.noreply.github.com" - name: Release run: release-it --ci env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.RELEASE_IT_TOKEN }}