mirror of
https://github.com/tj-actions/changed-files
synced 2025-01-05 09:35:54 +00:00
Update README.md
This commit is contained in:
parent
afa4cd137b
commit
16dd720838
1 changed files with 2 additions and 2 deletions
|
@ -146,12 +146,12 @@ jobs:
|
||||||
- name: Run step if all files listed above have changed
|
- name: Run step if all files listed above have changed
|
||||||
if: steps.changed-files-specific.outputs.all_changed == 'true'
|
if: steps.changed-files-specific.outputs.all_changed == 'true'
|
||||||
run: |
|
run: |
|
||||||
echo "Both my-file.txt and test.txt have changed."
|
echo "All files listed above has changed."
|
||||||
|
|
||||||
- name: Run step if any of the listed files above change
|
- name: Run step if any of the listed files above change
|
||||||
if: steps.changed-files-specific.outputs.any_changed == 'true'
|
if: steps.changed-files-specific.outputs.any_changed == 'true'
|
||||||
run: |
|
run: |
|
||||||
echo "Either my-file.txt or test.txt have changed."
|
echo "One or more files listed above has changed."
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue