From d27353d41dc0bb31864958cb630b52ff6ae860dd Mon Sep 17 00:00:00 2001 From: Kim T Date: Wed, 18 Sep 2024 21:32:29 -0700 Subject: [PATCH] Add new line to report --- .github/workflows/validate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 1734473..df7c65b 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -47,7 +47,7 @@ jobs: script: | const analysis = '${{steps.virustotal.outputs.analysis}}'; if (!analysis) return; - let output = 'VirusTotal Report'; + let output = 'VirusTotal Report:\n'; let lines = analysis.split(','); for (let line of lines) { output += '- ' + line.replace('=https', ': https') + '\n';