From e6f45cf7fec9ab5d03c56d21bed3e1190718e281 Mon Sep 17 00:00:00 2001 From: Paul Pacheco Date: Mon, 28 Feb 2022 14:55:00 -0600 Subject: [PATCH] Remove commented out code --- src/main.ts | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/src/main.ts b/src/main.ts index 7b085eb..53d2713 100644 --- a/src/main.ts +++ b/src/main.ts @@ -47,24 +47,6 @@ async function run(): Promise { annotations.annotate(testResult); } - /* - await octokit.checks.create({ - head_sha: (pr && pr["head"] && pr["head"].sha) || context.sha, - name: `Tests Report: ${title}`, - owner: context.repo.owner, - repo: context.repo.repo, - status: "completed", - conclusion: - results.failed > 0 || results.passed === 0 ? "failure" : "success", - output: { - title, - summary, - annotations: results.annotations.slice(0, numFailures), - text: details, - }, - }); - */ - core.endGroup(); } catch (error) { core.setFailed(error.message);