We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 26c5d0b + 56d9f9b commit 87f146dCopy full SHA for 87f146d
1 file changed
.github/workflows/coverage.yml
@@ -51,9 +51,9 @@ jobs:
51
output: test-summary.md
52
if: always()
53
54
- # Only post comments if the PR came from FINOS (the only repo with permission to run it)
+ # Only post comments if the PR came from this repo rather than a fork (the only repo with permission to do so)
55
- name: PR comment with file
56
- if: github.event.pull_request.head.repo.full_name == 'finos/FDC3'
+ if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository }}
57
uses: thollander/actions-comment-pull-request@v3
58
with:
59
file-path: test-summary.md
0 commit comments