Skip to content

Commit 3d14498

Browse files
🪲[Fix]: Fix permissions to allow commenting on pull requests and make releases (#262)
This release fixes a bug to the GitHub Actions workflow permissions. The change grants write access to pull requests, which will allow the workflow to: - comment on PRs - manage releases
1 parent 6388a88 commit 3d14498

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

‎.github/workflows/Publish-Module.yml‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ on:
1313
required: true
1414

1515
permissions:
16-
contents: read # to checkout the repo
16+
contents: write # to checkout the repo and create releases
17+
pull-requests: write # to comment on PRs
1718

1819
jobs:
1920
Publish-Module:

0 commit comments

Comments
 (0)