We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80cf12e commit 23f445cCopy full SHA for 23f445c
.github/workflows/bumpversion.yml
@@ -11,15 +11,19 @@ jobs:
11
runs-on: ubuntu-latest
12
name: "Bump version and create changelog with commitizen"
13
steps:
14
+ - uses: actions/create-github-app-token@v1
15
+ id: app-token
16
+ with:
17
+ app-id: ${{ vars.APP_ID }}
18
+ private-key: ${{ secrets.PRIVATE_KEY }}
19
- name: Check out
20
uses: actions/checkout@v4
21
with:
22
fetch-depth: 0
- token: "${{ secrets.GITHUB_TOKEN }}"
23
- id: cz
24
name: Create bump and changelog
25
uses: commitizen-tools/commitizen-action@master
26
- github_token: ${{ secrets.GITHUB_TOKEN }}
27
+ github_token: ${{ steps.app-token.outputs.token }}
28
- name: Print Version
29
run: echo "Bumped to version ${{ steps.cz.outputs.version }}"
0 commit comments