fix: large output generated by all_old_new_renamed_files output (#502)

This commit is contained in:
Tonye Jack
2022-05-25 17:47:58 -04:00
committed by GitHub
parent 42d4eb324d
commit 0edfedf16d
5 changed files with 35 additions and 8 deletions

View File

@@ -27,7 +27,6 @@ jobs:
- name: Show output
run: |
echo '${{ toJSON(steps.changed-files.outputs) }}'
- name: Run changed-files with glob filtering
id: changed-files-glob
uses: ./
@@ -38,3 +37,15 @@ jobs:
- name: Show output
run: |
echo '${{ toJSON(steps.changed-files-glob.outputs) }}'
- name: Run changed-files with glob filtering and all_old_new_renamed_files
id: changed-files-glob-all-old-new-renamed-files
uses: ./
with:
include_all_old_new_renamed_files: true
files: |
test/*.txt
- name: Show output
run: |
echo '${{ toJSON(steps.changed-files-glob-all-old-new-renamed-files.outputs) }}'