Skip to content

Commit

Permalink
test: verify bug writing outputs when files_yaml is used (#1762)
Browse files Browse the repository at this point in the history
  • Loading branch information
jackton1 committed Nov 30, 2023
1 parent 883b4cc commit fc1fb2b
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -643,6 +643,29 @@ jobs:
shell:
bash

- name: Run changed-files with files_yaml, json and write_output_files
id: changed-files-json-write-output-files
uses: ./
with:
files_yaml: |
test:
- .github/workflows/test.yml
json: true
write_output_files: true

- name: Show all outputs
run: |
echo "${{ toJSON(steps.changed-files-json-write-output-files.outputs) }}"
shell:
bash

- name: Show all_changed_files output and list .github/outputs
run: |
echo '${{ toJSON(steps.changed-files-json-write-output-files.outputs.test_all_changed_files) }}'
cat .github/outputs/test_all_changed_files.json
shell:
bash

test-recover-deleted-file:
name: Test changed-files recover deleted file
runs-on: ubuntu-latest
Expand Down

0 comments on commit fc1fb2b

Please sign in to comment.