3
0
Fork 0
mirror of https://github.com/tj-actions/changed-files synced 2025-01-18 03:57:42 +00:00

Update README.md

This commit is contained in:
Tonye Jack 2023-09-13 07:45:12 -06:00 committed by GitHub
parent 001f56257c
commit bb3b39cd33
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -255,7 +255,6 @@ jobs:
with:
fetch-depth: 0 # OR "2" -> To retrieve the preceding commit.
# Example 1
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v39
@ -267,11 +266,6 @@ jobs:
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do
echo "$file was changed"
done
# Example 2: See above
...
# Example 3: See above
...
```