Skip to content

Commit a6a8167

Browse files
authored
Update README.md
1 parent 592e305 commit a6a8167

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

README.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ Verify that certain files or directories did or did not change during the workfl
6060
uses: tj-actions/verify-changed-files@v16
6161
id: verify-changed-files
6262
with:
63-
safe_output: false # true by default, set to false because we are using an environment variable to store the output and avoid command injection.
6463
files: |
6564
*.txt
6665
test_directory
@@ -86,7 +85,6 @@ Verify that certain files or directories did or did not change during the workfl
8685
uses: tj-actions/verify-changed-files@v16
8786
id: verify-changed-files
8887
with:
89-
safe_output: false
9088
files: |
9189
new.txt
9290
test_directory
@@ -104,13 +102,10 @@ Verify that certain files or directories did or did not change during the workfl
104102
- name: Verify Changed files
105103
uses: tj-actions/verify-changed-files@v16
106104
id: verify-changed-files
107-
with:
108-
safe_output: false
109105

110106
- name: List all changed files tracked and untracked files
111107
env:
112-
FILES_CHANGED: |-
113-
${{ steps.verify-changed-files.outputs.changed_files }}
108+
FILES_CHANGED: ${{ steps.verify-changed-files.outputs.changed_files }}
114109
run: |
115110
echo "Changed files: $FILES_CHANGED"
116111
```

0 commit comments

Comments
 (0)