We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a505621 commit c6b70eaCopy full SHA for c6b70ea
1 file changed
.github/workflows/release-package.yml
@@ -19,12 +19,19 @@ jobs:
19
conventional-changelog-conventionalcommits
20
env:
21
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22
-
+
23
+ - name: Get token
24
+ if: steps.semantic.outputs.new_release_published == 'true'
25
+ id: get_token
26
+ uses: peter-murray/workflow-application-token-action@v2.1.0
27
+ with:
28
+ application_id: ${{ secrets.APP_ID }}
29
+ application_private_key: ${{ secrets.APP_SECRET }}
30
31
- name: Commit changes
32
if: steps.semantic.outputs.new_release_published == 'true'
33
- GITHUB_TOKEN: ${{ steps.GITHUB_TOKEN }}
- GH_TOKEN: ${{ github.token }}
34
+ GITHUB_TOKEN: ${{ steps.get_token.outputs.token }}
35
FILE_TO_COMMIT: CHANGELOG.md
36
DESTINATION_BRANCH: ${{ github.ref }}
37
run: |
0 commit comments