Skip to content

Commit

Permalink
fixed PR build check failing on forked repo PR
Browse files Browse the repository at this point in the history
  • Loading branch information
Licho1 committed Apr 6, 2024
1 parent 524e596 commit d15f44e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test_pullrequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ jobs:
shell: cmd

- name: Test Report C#
if: (github.event.pull_request.head.repo.full_name == github.repository) && (success() || failure()) # run this step even if previous step failed but not on PR from forked repo
uses: dorny/test-reporter@v1
if: success() || failure() # run this step even if previous step failed
with:
name: Test results C# # Name of the check run which will be created
path: TestResults/test-results.trx
Expand Down

0 comments on commit d15f44e

Please sign in to comment.