Skip to content

Commit f5a4eec

Browse files
committed
build: exclude markdown files from some GitHub Actions
Ignore all markdown files when determining if test-asan, coverage-*, and test-macos need to run.
1 parent 3f0b623 commit f5a4eec

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

.github/workflows/coverage-linux.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@ on:
1313
- master
1414
- main
1515
paths-ignore:
16-
- 'doc/**'
17-
- 'deps/**'
16+
- '**.md'
1817
- 'benchmark/**'
18+
- 'deps/**'
19+
- 'doc/**'
1920
- 'tools/**'
2021

2122
env:

.github/workflows/coverage-windows.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@ on:
1313
- master
1414
- main
1515
paths-ignore:
16-
- 'doc/**'
17-
- 'deps/**'
16+
- '**.md'
1817
- 'benchmark/**'
18+
- 'deps/**'
19+
- 'doc/**'
1920
- 'tools/**'
2021

2122
env:

.github/workflows/test-asan.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ on:
1313
pull_request:
1414
types: [opened, synchronize, reopened, ready_for_review]
1515
paths-ignore:
16+
- '**.md'
1617
- 'doc/**'
1718

1819
env:

.github/workflows/test-macos.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ on:
1313
- v[0-9]+.x-staging
1414
- v[0-9]+.x
1515
paths-ignore:
16+
- '**.md'
1617
- 'doc/**'
1718

1819
env:

0 commit comments

Comments
 (0)