We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1fc62c commit 30dab7dCopy full SHA for 30dab7d
index.js
@@ -11,8 +11,8 @@ const WAIT_TIME_FOR_RESULT = core.getInput('WAIT_TIME_FOR_RESULT')
11
const BLOCK_LEVEL = core.getInput('BLOCK_LEVEL') || "HIGH"
12
const GITHUB_STEP_SUMMARY = process.env.GITHUB_STEP_SUMMARY
13
14
-function logGithubStepSummary(message) {
15
- fs.appendFileSync(GITHUB_STEP_SUMMARY, `${message}\n`);
+async function logGithubStepSummary(message) {
+ await core.summary.addRaw(`${message}`).addEOL();
16
}
17
18
function toInt(a) {
0 commit comments