mirror of
https://github.com/tj-actions/changed-files
synced 2025-01-31 05:20:11 +00:00
Update README.md
This commit is contained in:
parent
003b42ec7f
commit
e622bd9227
1 changed files with 3 additions and 3 deletions
|
@ -135,8 +135,8 @@ jobs:
|
||||||
done
|
done
|
||||||
|
|
||||||
# Example 2
|
# Example 2
|
||||||
- name: Get changed files
|
- name: Get all changed markdown files
|
||||||
id: changed-files
|
id: changed-markdown-files
|
||||||
uses: tj-actions/changed-files@v40
|
uses: tj-actions/changed-files@v40
|
||||||
with:
|
with:
|
||||||
files: |
|
files: |
|
||||||
|
@ -145,7 +145,7 @@ jobs:
|
||||||
|
|
||||||
- name: List all changed files markdown files
|
- name: List all changed files markdown files
|
||||||
run: |
|
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"
|
echo "$file was changed"
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue