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 6b5345b commit d55ca9dCopy full SHA for d55ca9d
1 file changed
.github/workflows/release.yml
@@ -20,8 +20,18 @@ jobs:
20
pr: ${{ steps.release-please.outputs.pr }}
21
runs-on: ubuntu-latest
22
steps:
23
+ - uses: actions/create-github-app-token@v3
24
+ id: app-token
25
+ with:
26
+ client-id: ${{ secrets.APP_CLIENT_ID }}
27
+ private-key: ${{ secrets.APP_PEM }}
28
+ permission-contents: write
29
+ permission-issues: write
30
+ permission-pull-requests: write
31
- id: release-please
32
uses: googleapis/release-please-action@v4
33
34
+ token: ${{ steps.app-token.outputs.token }}
35
36
npm:
37
needs: release-github
0 commit comments