ci: display HTML test report URLs in check run summaries (#252) #14
Workflow file for this run
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: Dummy Check Result | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- '.github/workflows/dummy_check_result.yml' | |
jobs: | |
test_check: | |
name: "Test Check" | |
runs-on: ubuntu-22.04 | |
permissions: | |
checks: write | |
contents: read | |
steps: | |
- name: Create Independent Check Run | |
uses: LouisBrunner/[email protected] | |
with: | |
token: ${{ github.token }} | |
name: "External Test Report Link" | |
status: completed | |
conclusion: failure | |
details_url: "https://www.google.com/search?q=test-failure" | |
output: | | |
{ | |
"title": "External Test Report", | |
"summary": "Click 'Details' to view the external test report." | |
} |