Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -216,10 +216,11 @@ jobs:
name: pluginVerifier-result
path: ${{ github.workspace }}/build/reports/pluginVerifier

# Post a comment on PRs with a link to download the plugin
# Post a comment on PRs with a link to download the plugin.
# Skip for fork PRs - GITHUB_TOKEN lacks write access to the base repo.
prComment:
name: PR comment
if: github.event_name == 'pull_request'
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if I get this right, the prComment is only run in the main repository, not in the forks any more. Looks sound

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

correct

needs: [ build, test, inspectCode, verify ]
runs-on: ubuntu-latest
permissions:
Expand Down
Loading