1 parent 94f8a0f commit f0ea576Copy full SHA for f0ea576
1 file changed
.github/workflows/publish.yml
@@ -6,14 +6,15 @@ on:
6
branches:
7
- 'main'
8
9
+permissions:
10
+ contents: write # to be able to publish a GitHub release
11
+ issues: write # to be able to comment on released issues
12
+ pull-requests: write # to be able to comment on released pull requests
13
+ id-token: write # to enable use of OIDC for trusted publishing and npm provenance
14
+
15
jobs:
16
publish:
17
runs-on: ubuntu-latest
- permissions:
- contents: write # to be able to publish a GitHub release
- issues: write # to be able to comment on released issues
- pull-requests: write # to be able to comment on released pull requests
- id-token: write # to enable use of OIDC for trusted publishing and npm provenance
18
env:
19
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20
steps:
0 commit comments