mikepenz / action-junit-report

Reports junit test results as GitHub Pull Request Check
https://blog.mikepenz.dev
Apache License 2.0
304 stars 116 forks source link

check_name failed to report #1089

Closed hikoukii-gumoo closed 4 months ago

hikoukii-gumoo commented 4 months ago

I setup a check rule on a action-junit-report with check_name:

name: Report
uses: mikepenz/action-junit-report@v4
if: success() || failure()
with:
    check_name: ci/unit-test
    report_paths: ./unit-test-reports/**/TEST-*.xml

The check is flaky, sometimes it passed, sometimes it stucks forever:

ci/unit-test Expected — Waiting for status to be reported

Log:

Run mikepenz/action-junit-report@v4
📘 Reading input values
đŸ“Ļ Process test results
🚀 Publish results
  ℹī¸ - ci/unit-test - 113 tests run, 113 passed, 0 skipped, 0 failed.
  ℹī¸ - ci/unit-test - Creating check (Annotations: 0)
  ⚠ī¸ No annotations found for ci/unit-test. If you want to include passed results in this table please configure 'include_passed' as 'true'

I'm using latest runner version. Am I missing any configuration or it's a bug of action-junit-report?