Skip to content

ci: display HTML test report URLs in check run summaries (#252) #9

ci: display HTML test report URLs in check run summaries (#252)

ci: display HTML test report URLs in check run summaries (#252) #9

name: Dummy Check Result
on:
pull_request:
branches:
- main
paths:
- '.github/workflows/dummy_check_result.yml'
jobs:
failure_check:
name: "Dummy Job"
runs-on: ubuntu-22.04
permissions:
checks: write
contents: read
steps:
- name: Create Custom Check Run
uses: LouisBrunner/[email protected]
with:
token: ${{ github.token }}
name: "Custom Test Report"
status: "in_progress"
output: |
{
"title": "Test Report",
"summary": "Running test check..."
}
- name: Sleep for a moment
run: sleep 5
- name: Update Custom Check Run
uses: LouisBrunner/[email protected]
with:
token: ${{ github.token }}
name: "Custom Test Report"
status: "completed"
conclusion: "failure"
details_url: "https://www.google.com/search?q=test-failure"
output: |
{
"title": "Test Failed",
"summary": "This is a test failure check with custom details URL."
}