From ae86b4533565ab4d357c7af961eedd5f00552fa8 Mon Sep 17 00:00:00 2001 From: Prad Nukala Date: Fri, 27 Sep 2024 23:33:48 -0400 Subject: [PATCH] fix: use GITHUB_TOKEN for version bump workflow --- .github/workflows/version-bump.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/version-bump.yml b/.github/workflows/version-bump.yml index c935b28b5..d4800d868 100644 --- a/.github/workflows/version-bump.yml +++ b/.github/workflows/version-bump.yml @@ -35,9 +35,9 @@ jobs: steps: - uses: actions/checkout@v4 with: - token: ${{ secrets.GH_PAT_TOKEN }} + token: ${{ secrets.GITHUB_TOKEN }} fetch-depth: 0 - name: Create bump and changelog uses: commitizen-tools/commitizen-action@master with: - github_token: ${{ secrets.GH_PAT_TOKEN }} + github_token: ${{ secrets.GITHUB_TOKEN }}