Skip to content

Commit

Permalink
Fix a bug in JUnit XML comparison part (#195)
Browse files Browse the repository at this point in the history
  • Loading branch information
walkowif authored Nov 14, 2023
1 parent 39ecaca commit befd8be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-check-install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@ jobs:
env.junit_xml_comparison == 'true' &&
env.junit_xml_comparison_result_method == 'comment' &&
!github.event.pull_request.head.repo.fork &&
github.event_name == 'pull-request'
github.event_name == 'pull_request'
uses: marocchino/sticky-pull-request-comment@v2
with:
header: markdown-table
Expand All @@ -638,7 +638,7 @@ jobs:
env.junit_xml_comparison == 'true' &&
env.junit_xml_comparison_result_method == 'artifact' &&
!github.event.pull_request.head.repo.fork &&
github.event_name == 'pull-request'
github.event_name == 'pull_request'
uses: actions/upload-artifact@v3
with:
path: output-artifact.md
Expand Down

0 comments on commit befd8be

Please sign in to comment.