mirror of
https://github.com/tj-actions/changed-files
synced 2025-01-17 19:17:45 +00:00
Merge pull request #659 from tj-actions/chore/test-using-non-ascii-characters-in-files-input
This commit is contained in:
commit
5a03253d72
2 changed files with 12 additions and 1 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 }}."
|
||||
shell:
|
||||
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
|
||||
id: changed-files-quotepath
|
||||
uses: ./
|
||||
|
|
|
@ -1 +1 @@
|
|||
This is a test file.
|
||||
This is a test file with non ascii character filename.
|
||||
|
|
Loading…
Reference in a new issue