From 75926ef26ef3fc4e41a5376d3850332b8526a57d Mon Sep 17 00:00:00 2001 From: Kim T Date: Wed, 18 Sep 2024 21:27:56 -0700 Subject: [PATCH] Update step name and log --- .github/workflows/validate.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index f9ec8ff..1734473 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -23,13 +23,14 @@ jobs: id: changed-files uses: tj-actions/changed-files@v45 - - name: List changed files + - name: Validate changed files env: CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }} run: | for file in ${CHANGED_FILES}; do node ./build/validate.js $file done + echo 'Downloads:' ls ./downloads/ - name: VirusTotal Scan @@ -62,13 +63,13 @@ jobs: owner: context.repo.owner, repo: context.repo.repo, comment_id: existingComment.id, - body: commentBody + body: output }); } else { await github.rest.issues.createComment({ owner: context.repo.owner, repo: context.repo.repo, issue_number: context.payload.number, - body: commentBody + body: output }); }