This commit is contained in:
Simon Heimberg 2025-11-27 10:27:00 +01:00 committed by GitHub
commit c87051c8ca
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -482,6 +482,19 @@ jobs:
<details>
<summary>Detect changes in folder only for some file extensions</summary>
```yaml
- uses: dorny/paths-filter@v3
id: filter
with:
# include the files not (!) matching the listed extensions (list separated by |, grouped by ())
filters: |
backend:
- 'pkg/a/b/c/**/!(*.jpeg|*.md)'
- 'pkg/x/**'
```
or
```yaml
- uses: dorny/paths-filter@v3
id: filter