Skip to content

Commit

Permalink
Update test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jackton1 committed Mar 5, 2021
1 parent 6ffc92b commit e1b9045
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/test.yml
Expand Up @@ -18,4 +18,17 @@ jobs:
- name: shellcheck
uses: reviewdog/action-shellcheck@v1
- name: Run changed-files
id: changed-files
uses: ./
- name: Show output
run: |
echo "Added Files: ${{ steps.changes-files.outputs.added_files }}"
echo "Copied Files: ${{ steps.changes-files.outputs.copied_files }}"
echo "Deleted Files: ${{ steps.changes-files.outputs.deleted_files }}"
echo "Modified Files: ${{ steps.changes-files.outputs.modified_files }}"
echo "Renamed Files: ${{ steps.changes-files.outputs.renamed_files }}"
echo "Changed Files: ${{ steps.changes-files.outputs.changed_files }}"
echo "Unmerged Files: ${{ steps.changes-files.outputs.unmerged_files }}"
echo "Unknown Files: ${{ steps.changes-files.outputs.unknown_files }}"
echo "All Changed Files: ${{ steps.changes-files.outputs.all_changed_files }}"

0 comments on commit e1b9045

Please sign in to comment.