There was an error while loading. Please reload this page.
2 parents caa98f7 + 4532890 commit 2011d3aCopy full SHA for 2011d3a
1 file changed
.github/workflows/semantic-release.yml
@@ -10,7 +10,15 @@ jobs:
10
runs-on: ubuntu-latest
11
permissions:
12
contents: write
13
+ pull-requests: write
14
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
22
- name: Checkout
23
uses: actions/checkout@v5
24
- uses: actions/setup-node@v3
@@ -21,4 +29,4 @@ jobs:
29
with:
30
semantic_version: 17
31
env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
32
+ GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
0 commit comments