Skip to content

Commit 2011d3a

Browse files
authored
Merge pull request #24 from dbsystel/semantic-release
Semantic release
2 parents caa98f7 + 4532890 commit 2011d3a

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

.github/workflows/semantic-release.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,15 @@ jobs:
1010
runs-on: ubuntu-latest
1111
permissions:
1212
contents: write
13+
pull-requests: write
1314
steps:
15+
- uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0
16+
id: app-token
17+
with:
18+
client-id: ${{ secrets.RELEASER_CLIENT_ID }}
19+
private-key: ${{ secrets.RELEASER_PRIVATE_KEY }}
20+
permission-contents: write
21+
permission-pull-requests: write
1422
- name: Checkout
1523
uses: actions/checkout@v5
1624
- uses: actions/setup-node@v3
@@ -21,4 +29,4 @@ jobs:
2129
with:
2230
semantic_version: 17
2331
env:
24-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
32+
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}

0 commit comments

Comments
 (0)