mirror of
https://github.com/tj-actions/changed-files
synced 2024-12-17 13:47:20 +00:00
chore: test using non ascii characters in files input
This commit is contained in:
parent
8f03b98162
commit
2b7a7f90b7
1 changed files with 11 additions and 0 deletions
11
.github/workflows/test.yml
vendored
11
.github/workflows/test.yml
vendored
|
@ -284,6 +284,17 @@ jobs:
|
||||||
echo "Your README.md has been modified ${{ steps.changed-files.outputs.modified_files }}."
|
echo "Your README.md has been modified ${{ steps.changed-files.outputs.modified_files }}."
|
||||||
shell:
|
shell:
|
||||||
bash
|
bash
|
||||||
|
- name: Run changed-files with quotepath disabled for single path
|
||||||
|
id: changed-files-quotepath-specific
|
||||||
|
uses: ./
|
||||||
|
with:
|
||||||
|
files: test/test-è.txt
|
||||||
|
quotepath: "false"
|
||||||
|
- name: Show output
|
||||||
|
run: |
|
||||||
|
echo '${{ toJSON(steps.changed-files-quotepath-specific.outputs) }}'
|
||||||
|
shell:
|
||||||
|
bash
|
||||||
- name: Run changed-files with quotepath disabled
|
- name: Run changed-files with quotepath disabled
|
||||||
id: changed-files-quotepath
|
id: changed-files-quotepath
|
||||||
uses: ./
|
uses: ./
|
||||||
|
|
Loading…
Reference in a new issue