mirror of
https://github.com/sigmasternchen/drnk.me
synced 2025-03-14 17:38:53 +00:00
chore: Use Pipeline token instead of personal access token
This commit is contained in:
parent
f62e0281da
commit
3e2a859e4d
1 changed files with 4 additions and 2 deletions
6
.github/workflows/bumb-version.yml
vendored
6
.github/workflows/bumb-version.yml
vendored
|
@ -5,6 +5,9 @@ on:
|
|||
branches:
|
||||
- "main"
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
|
||||
jobs:
|
||||
bump-version:
|
||||
if: "!startsWith(github.event.head_commit.message, 'bump:')"
|
||||
|
@ -14,9 +17,8 @@ jobs:
|
|||
- name: Check out
|
||||
uses: "actions/checkout@v3"
|
||||
with:
|
||||
token: "${{ secrets.PERSONAL_ACCESS_TOKEN }}"
|
||||
fetch-depth: 0
|
||||
- name: Create bump and changelog
|
||||
uses: "commitizen-tools/commitizen-action@master"
|
||||
with:
|
||||
github_token: "${{ secrets.PERSONAL_ACCESS_TOKEN }}"
|
||||
github_token: "${{ github.token }}"
|
||||
|
|
Loading…
Reference in a new issue