Skip to content

Commit 59cdf19

Browse files
authored
Fix paths-ignore for ci-examples.yml (#7138)
Currently, `junit4`, `junit5`, `spock` at `docs/examples` don't run because of the `paths-ignore: 'docs'`. It is important to run those projects only when they are touched.
1 parent 1754231 commit 59cdf19

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

.github/workflows/ci-examples.yml

+13-2
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,25 @@ name: CI-Examples
33
on:
44
pull_request:
55
paths-ignore:
6-
- 'docs/**'
6+
- 'docs/**/*.css'
7+
- 'docs/**/*.html'
8+
- 'docs/**/*.ico'
9+
- 'docs/**/*.md'
10+
- 'docs/**/*.png'
11+
- 'docs/**/*.svg'
712
- 'mkdocs.yml'
813
- 'README.md'
914
- 'RELEASING.md'
1015
push:
1116
branches: [ main ]
1217
paths-ignore:
13-
- 'docs/**'
18+
- 'docs/**/*.css'
19+
- 'docs/**/*.html'
20+
- 'docs/**/*.ico'
21+
- 'docs/**/*.md'
22+
- 'docs/**/*.png'
23+
- 'docs/**/*.svg'
24+
- 'docs/**/*.md'
1425
- 'mkdocs.yml'
1526
- 'README.md'
1627
- 'RELEASING.md'

0 commit comments

Comments
 (0)