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

Update README.md

This commit is contained in:
Tonye Jack 2023-10-28 09:35:56 -06:00 committed by GitHub
parent 003b42ec7f
commit e622bd9227
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -135,8 +135,8 @@ jobs:
done
# Example 2
- name: Get changed files
id: changed-files
- name: Get all changed markdown files
id: changed-markdown-files
uses: tj-actions/changed-files@v40
with:
files: |
@ -145,7 +145,7 @@ jobs:
- name: List all changed files markdown files
run: |
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do
for file in ${{ steps.changed-markdown-files.outputs.all_changed_files }}; do
echo "$file was changed"
done