Skip to content

Commit

Permalink
Update step name and log
Browse files Browse the repository at this point in the history
  • Loading branch information
kmturley committed Sep 19, 2024
1 parent d2b9475 commit 75926ef
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
});
}

0 comments on commit 75926ef

Please sign in to comment.