Skip to content

Commit ce525f3

Browse files
authored
Consistent paths patterns examples (#275)
1 parent b807605 commit ce525f3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -103,12 +103,12 @@ A YAML-string with named [`paths_ignore`](#paths_ignore) / [`paths`](#paths) pat
103103
```yaml
104104
frontend:
105105
paths_ignore:
106-
- 'frontend/docs/**/*'
106+
- 'frontend/docs/**'
107107
paths:
108-
- 'frontend/**/*'
108+
- 'frontend/**'
109109
backend:
110110
paths:
111-
- 'backend/**/*'
111+
- 'backend/**'
112112
### Here you can optionally control/limit backtracking
113113
# Boolean or number (default: true)
114114
# 'false' means disable backtracking completely
@@ -313,12 +313,12 @@ jobs:
313313
paths_filter: |
314314
frontend:
315315
paths_ignore:
316-
- 'frontend/docs/**/*'
316+
- 'frontend/docs/**'
317317
paths:
318-
- 'frontend/**/*'
318+
- 'frontend/**'
319319
backend:
320320
paths:
321-
- 'backend/**/*'
321+
- 'backend/**'
322322
# Can be mixed with the "global" 'paths_ignore' / 'paths' options, for example:
323323
# paths_ignore: '["**/README.md"]'
324324

0 commit comments

Comments
 (0)