Skip to content

Commit 2a88f46

Browse files
Copilotcsharpfritz
andcommitted
Fix: Use **/*.md pattern to match markdown files in all directories
Co-authored-by: csharpfritz <78577+csharpfritz@users.noreply.github.com>
1 parent 4c2b7a2 commit 2a88f46

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
- 'v*'
99
paths-ignore:
1010
- 'docs/**'
11-
- '*.md'
11+
- '**/*.md'
1212
- 'mkdocs.yml'
1313
pull_request:
1414
branches:
@@ -17,7 +17,7 @@ on:
1717
- 'v*'
1818
paths-ignore:
1919
- 'docs/**'
20-
- '*.md'
20+
- '**/*.md'
2121
- 'mkdocs.yml'
2222
workflow_dispatch:
2323

.github/workflows/integration-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
- 'v*'
99
paths-ignore:
1010
- 'docs/**'
11-
- '*.md'
11+
- '**/*.md'
1212
- 'mkdocs.yml'
1313
pull_request:
1414
branches:
@@ -17,7 +17,7 @@ on:
1717
- 'v*'
1818
paths-ignore:
1919
- 'docs/**'
20-
- '*.md'
20+
- '**/*.md'
2121
- 'mkdocs.yml'
2222
workflow_dispatch:
2323

0 commit comments

Comments
 (0)