Comment CI test results on PR #145
This file contains 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: Comment CI test results on PR | |
on: | |
workflow_run: | |
workflows: ["CI"] | |
types: | |
- completed | |
jobs: | |
comment: | |
runs-on: ubuntu-latest | |
permissions: | |
# list and download | |
actions: read | |
# post results as comment | |
pull-requests: write | |
# publish creates a check run | |
checks: write | |
steps: | |
- uses: actions/github-script@v7 | |
with: | |
script: | | |
var artifacts = await github.rest.actions.listWorkflowRunArtifacts({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
run_id: ${{github.event.workflow_run.id }}, | |
}); | |
var matchArtifact = artifacts.data.artifacts.filter((artifact) => { | |
return artifact.name == "test-results" | |
})[0]; | |
var download = await github.rest.actions.downloadArtifact({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
artifact_id: matchArtifact.id, | |
archive_format: 'zip', | |
}); | |
var fs = require('fs'); | |
fs.writeFileSync('${{github.workspace}}/test-results.zip', Buffer.from(download.data)); | |
- id: unpack | |
run: | | |
mkdir -p test-results | |
unzip -d test-results test-results.zip | |
echo "sha=$(cat test-results/sha-number)" >> "$GITHUB_OUTPUT" | |
- uses: docker://ghcr.io/enricomi/publish-unit-test-result-action:v1.6 | |
with: | |
commit: ${{ steps.unpack.outputs.sha }} | |
check_name: Unit Test Results | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
files: "**/test-results/**/*.xml" |