We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 571e351 commit 69f92f0Copy full SHA for 69f92f0
1 file changed
.github/workflows/release-pr.yaml
@@ -7,13 +7,20 @@ jobs:
7
release-pr:
8
name: "Release Please"
9
runs-on: ubuntu-latest
10
- permissions: write-all
+ permissions:
11
+ contents: write
12
+ pull-requests: write
13
steps:
14
+ - name: "Generate access token"
15
+ id: gentoken
16
+ uses: actions/create-github-app-token@v1
17
+ with:
18
+ app-id: ${{ secrets.RELEASE_PLEASE_APP_ID }}
19
+ private-key: ${{ secrets.RELEASE_PLEASE_PRIVATE_KEY }}
20
- name: "Check out code"
- uses: actions/checkout@v3
21
+ uses: actions/checkout@v4
22
- name: "Create/update release PR"
23
uses: google-github-actions/release-please-action@v3
24
with:
- token: ${{ secrets.RELEASE_PLEASE_TOKEN }}
- command: manifest
25
+ token: ${{ steps.gentoken.outputs.token }}
26
0 commit comments