From 2b5bb1cc811d744883e0a2c009e69645b2df39f8 Mon Sep 17 00:00:00 2001 From: Chris Coutinho Date: Sun, 25 May 2025 12:47:10 +0200 Subject: [PATCH] fix: Commitizen release process https://commitizen-tools.github.io/commitizen/tutorials/github_actions/ --- .github/workflows/bump-version.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/bump-version.yml b/.github/workflows/bump-version.yml index 8598e4b..bff5e28 100644 --- a/.github/workflows/bump-version.yml +++ b/.github/workflows/bump-version.yml @@ -18,11 +18,11 @@ jobs: uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 with: fetch-depth: 0 - token: "${{ secrets.GITHUB_TOKEN }}" + token: "${{ secrets.PERSONAL_ACCESS_TOKEN }}" - name: Create bump and changelog uses: commitizen-tools/commitizen-action@5b0848cd060263e24602d1eba03710e056ef7711 # 0.24.0 with: - github_token: ${{ secrets.GITHUB_TOKEN }} + github_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} changelog_increment_filename: body.md - name: Release uses: softprops/action-gh-release@da05d552573ad5aba039eaac05058a918a7bf631 # v2