Skip to content

Commit

Permalink
use personal access token to create pull request so that CI will run
Browse files Browse the repository at this point in the history
  • Loading branch information
friedbrice committed Jan 31, 2024
1 parent f1ba428 commit 41eb63b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,10 @@ jobs:
id: release_pr
uses: peter-evans/create-pull-request@v5
with:
token: ${{ secrets.GITHUB_TOKEN }}
# I use a personal access token with the `repo` scope.
# Actions performed with the default GITHUB_TOKEN do not trigger subsequent actions.
# See <https://docs.github.com/en/actions/security-guides/automatic-token-authentication#using-the-github_token-in-a-workflow>.
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
branch: release/${{ steps.bump_version.outputs.new_version }}
delete-branch: true
base: main
Expand Down

0 comments on commit 41eb63b

Please sign in to comment.