1
0
mirror of synced 2026-01-05 12:07:35 -05:00

escape echo of changed files in Action (#24058)

* escape echo of changed files in Action

* escaped

* escaped (2)

* temporary

* reset temporary tests
This commit is contained in:
Peter Bengtsson
2022-01-04 17:50:43 -05:00
committed by GitHub
parent 6db45685d2
commit 9bdbec73d4

View File

@@ -46,7 +46,7 @@ jobs:
output: ' '
- name: Insight into changed files
run: |
echo ${{ steps.get_diff_files.outputs.files }}
echo "${{ steps.get_diff_files.outputs.files }}"
- name: Link check (warnings, changed files)
run: |
@@ -56,7 +56,7 @@ jobs:
--check-anchors \
--check-images \
--verbose \
${{ steps.get_diff_files.outputs.files }}
"${{ steps.get_diff_files.outputs.files }}"
- name: Link check (critical, all files)
run: |