Skip to content

Commit 652191c

Browse files
committed
Fix paths-ignore for workflows
1 parent 59cdf19 commit 652191c

File tree

3 files changed

+36
-6
lines changed

3 files changed

+36
-6
lines changed

.github/workflows/ci-docker-wormhole.yml

+12-2
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,24 @@ name: CI-Docker-Wormhole
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'
1424
- 'mkdocs.yml'
1525
- 'README.md'
1626
- 'RELEASING.md'

.github/workflows/ci-rootless.yml

+12-2
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,24 @@ name: CI-Docker-Rootless
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'
1424
- 'mkdocs.yml'
1525
- 'README.md'
1626
- 'RELEASING.md'

.github/workflows/ci.yml

+12-2
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,24 @@ name: CI
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'
1424
- 'mkdocs.yml'
1525
- 'README.md'
1626
- 'RELEASING.md'

0 commit comments

Comments
 (0)