PR Comment #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PR Comment | |
on: | |
workflow_run: | |
# The workflow generating the artifacts | |
workflows: [Test] | |
types: | |
- completed | |
permissions: | |
actions: read | |
issues: write | |
checks: read | |
statuses: read | |
pull-requests: write | |
jobs: | |
comment: | |
uses: bgd-labs/github-workflows/.github/workflows/comment.yml@main | |
secrets: | |
# the provided PAT needs write and write permissions on issues and pull requests | |
# the PAT is only really needed when commenting of prs from forks | |
READ_ONLY_PAT: ${{ secrets.READ_ONLY_PAT }} |