Skip to content

Commit e13ab71

Browse files
authored
Fix: Add semantic-release permissions to release workflow (fixes #223)
1 parent ce6de68 commit e13ab71

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/releases.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ jobs:
77
release:
88
name: Release
99
runs-on: ubuntu-latest
10+
permissions:
11+
contents: write # to be able to publish a GitHub release
12+
issues: write # to be able to comment on released issues
13+
pull-requests: write # to be able to comment on released pull requests
14+
id-token: write # to enable use of OIDC for trusted publishing and npm provenance
1015
steps:
1116
- name: Checkout
1217
uses: actions/checkout@v4

0 commit comments

Comments
 (0)