3
0
Fork 0
mirror of https://github.com/tj-actions/changed-files synced 2025-01-17 19:17:45 +00:00

Update README.md

This commit is contained in:
Tonye Jack 2023-08-03 16:11:38 -06:00 committed by GitHub
parent 10228bf07b
commit 20a19b977f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -538,7 +538,7 @@ See [outputs](#outputs) for a list of all available outputs.
*.png
!*.md
test_directory
**.sql
**/*.sql
...
```
@ -561,7 +561,7 @@ See [inputs](#inputs) for more information.
*.png
!*.md
test_directory
**.sql
**/*.sql
- name: Run step if any of the listed files above change
if: steps.changed-files-specific.outputs.any_changed == 'true'
@ -929,9 +929,8 @@ With the switch from using grep's Extended regex to match files to the natively
- \.sh$
- .(sql|py)$
- ^(dir1|dir2)
+ *.{sh,sql,py}
+ dir1
+ dir2
+ **/*.{sh,sql,py}
+ {dir1,dir2}/**
```
* Free software: [MIT license](LICENSE)