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 5929543 commit 50fc422Copy full SHA for 50fc422
.github/workflows/bump-version.yaml
@@ -4,6 +4,9 @@ on:
4
branches:
5
- master
6
7
+permissions:
8
+ contents: write
9
+
10
jobs:
11
test:
12
name: Bump Version
@@ -21,7 +24,7 @@ jobs:
21
24
uses: actions/create-release@v1
22
25
if: ${{ steps.next_version.outputs.version != steps.latest_version.outputs.version }}
23
26
env:
- GITHUB_TOKEN: ${{ secrets.PAT_GITHUB }}
27
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
28
with:
29
tag_name: "v${{ steps.next_version.outputs.version }}"
30
body: "${{ steps.markdown_log.outputs.changelog }}"
0 commit comments