Annotate test results #5955
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Annotate test results | |
| on: | |
| workflow_run: | |
| workflows: | |
| - "CI" | |
| types: | |
| - completed | |
| jobs: | |
| test-results: | |
| runs-on: ubuntu-24.04 | |
| name: Test results | |
| if: >- | |
| github.event.workflow_run.conclusion != 'skipped' && | |
| github.event.workflow_run.event == 'pull_request' | |
| steps: | |
| # - name: Debug output | |
| # env: | |
| # EVENT: ${{ toJSON(github.event) }} | |
| # run: | | |
| # echo "$EVENT" | |
| - name: Download and Extract Artifacts | |
| env: | |
| GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
| GITHUB_EVENT_WORKFLOW_RUN_ARTIFACTS_URL: ${{ github.event.workflow_run.artifacts_url }} | |
| run: | | |
| mkdir -p artifacts && cd artifacts | |
| artifacts_url=${GITHUB_EVENT_WORKFLOW_RUN_ARTIFACTS_URL} | |
| gh api "$artifacts_url" -q '.artifacts[] | [.name, .archive_download_url] | @tsv' | while read artifact | |
| do | |
| IFS=$'\t' read name url <<< "$artifact" | |
| gh api $url > "$name.zip" | |
| unzip -d "$name" "$name.zip" | |
| done | |
| - name: Publish Unit Test Results | |
| uses: EnricoMi/publish-unit-test-result-action@c950f6fb443cb5af20a377fd0dfaa78838901040 | |
| with: | |
| commit: ${{ github.event.workflow_run.head_sha }} | |
| event_file: artifacts/Event File/event.json | |
| event_name: ${{ github.event.workflow_run.event }} | |
| files: "artifacts/Junit test log files*/*.xml" | |