Skip to content
This repository has been archived by the owner on Dec 26, 2023. It is now read-only.

Commit

Permalink
Remove commented out code
Browse files Browse the repository at this point in the history
  • Loading branch information
paulpach committed Feb 28, 2022
1 parent 62c02f2 commit e6f45cf
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,24 +47,6 @@ async function run(): Promise<void> {
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);
Expand Down

0 comments on commit e6f45cf

Please sign in to comment.