lhotari opened a new issue, #16736: URL: https://github.com/apache/pulsar/issues/16736
**Is your enhancement request related to a problem? Please describe.** We are currently using a test reporting solution based on https://github.com/dorny/test-reporter and there's a copy of this action in https://github.com/apache/pulsar-test-infra/tree/master/test-reporter . The problem with this solution is that the test reporting is very verbose since it creates new check runs for the PR. When there are failed tests, the PR will be marked failing even in cases where the tests pass in a later retry. **Describe the solution you'd like** There's an alternative solution in https://github.com/mikepenz/action-junit-report which is actively maintained. It's possible to use this action with `annotate_only: 'true'` so that check runs aren't created at all. This is to mitigate the gap in GitHub Actions solution that check results cannot target a specific workflow when there are multiple active ones (more details in https://github.com/mikepenz/action-junit-report/issues/40#issuecomment-1192309267). The action will create a report for each build job using a new method available in GitHub Actions. example: https://github.com/mikepenz/action-junit-report/actions/runs/2717236074#summary-7464569272 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
