From 08e968d28afab0c686ee55bd720f809a1082f481 Mon Sep 17 00:00:00 2001 From: Connor Vidlock Date: Mon, 20 Mar 2023 09:56:42 -0500 Subject: [PATCH] Update main.ts --- src/main.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main.ts b/src/main.ts index 4b9bcdb..e608411 100644 --- a/src/main.ts +++ b/src/main.ts @@ -42,7 +42,7 @@ class TestReporter { readonly failOnError = core.getInput('fail-on-error', {required: true}) === 'true' readonly workDirInput = core.getInput('working-directory', {required: false}) readonly onlySummary = core.getInput('only-summary', {required: false}) === 'true' - readonly showHTMLNotice = core.getInput('show-html-notice', {required: false}) === 'true' + // readonly showHTMLNotice = core.getInput('show-html-notice', {required: false}) === 'true' readonly token = core.getInput('token', {required: true}) readonly octokit: InstanceType readonly context = getCheckRunContext() @@ -199,9 +199,9 @@ class TestReporter { core.info(`Check run create response: ${resp.status}`) core.info(`Check run URL: ${resp.data.url}`) core.info(`Check run HTML: ${resp.data.html_url}`) - if (this.showHTMLNotice) { - console.log(`::notice title=Test Results::${resp.data.html_url}`) - } + // if (this.showHTMLNotice) { + // console.log(`::notice title=Test Results::${resp.data.html_url}`) + // } return results }