This commit is contained in:
McQuenji 2025-11-14 18:46:58 +01:00 committed by GitHub
commit 3ad5f75cf3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 1 deletions

View file

@ -119,6 +119,8 @@ outputs:
description: Check run URL
url_html:
description: Check run URL HTML
summary:
description: The raw generated summary
runs:
using: 'node20'
main: 'dist/index.js'

View file

@ -193,7 +193,7 @@ class TestReporter {
})
core.info('Summary content:')
core.info(summary)
core.info(summary)
core.summary.addRaw(`# ${shortSummary}`)
await core.summary.addRaw(summary).write()
} else {
@ -245,6 +245,7 @@ class TestReporter {
core.info(`Check run HTML: ${resp.data.html_url}`)
core.setOutput('url', resp.data.url)
core.setOutput('url_html', resp.data.html_url)
core.setOutput('summary', summary)
}
return results