diff --git a/src/runner.ts b/src/runner.ts index d7408a41..aac49897 100644 --- a/src/runner.ts +++ b/src/runner.ts @@ -262,6 +262,9 @@ export const runAll = async (tests: Array, cwd: string): Promise => if (hasPoints) { const text = `Points ${points}/${availablePoints}` log(color.bold.bgCyan.black(text)) + const nwo = process.env['GITHUB_REPOSITORY'] || '/' + const [owner, repo] = nwo.split('/') + log(owner) core.setOutput('Points', `${points}/${availablePoints}`) await setCheckRunOutput(text) }