Skip to content

Commit

Permalink
ci(GitHub workflow): fix incorrect token in workflow
Browse files Browse the repository at this point in the history
Fix incorrect token in workflow. Personal access token was used but not set in GH.
  • Loading branch information
renedekat committed Sep 5, 2024
1 parent cf06c27 commit faaeeee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/bump_version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 0
token: "${{ secrets.PERSONAL_ACCESS_TOKEN }}"
token: "${{ secrets.GITHUB_TOKEN }}"
- name: Create bump and changelog
uses: commitizen-tools/commitizen-action@master
with:
github_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
github_token: ${{ secrets.GITHUB_TOKEN }}
changelog_increment_filename: body.md
- name: Release
uses: softprops/action-gh-release@v2
Expand Down

0 comments on commit faaeeee

Please sign in to comment.