Skip to content

Commit fd5ba12

Browse files
Copilotstardriftfx
andcommitted
Fix path pattern to correctly ignore .github folder
Co-authored-by: stardriftfx <56492920+stardriftfx@users.noreply.github.com>
1 parent 9bd0aba commit fd5ba12

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ on:
44
push:
55
branches: [ master,development ]
66
paths-ignore:
7-
- 'github/**' # Ignore .github folder
7+
- '.github/**' # Ignore .github folder
88
- '**/Doxyfile' # Ignore changes to Doxygen config
99
- 'docs/**' # Ignore documentation folder
1010
- '*.md' # Ignore Markdown files
1111
pull_request:
1212
types: [opened, synchronize, reopened]
1313
paths-ignore:
14-
- 'github/**' # Ignore .github folder
14+
- '.github/**' # Ignore .github folder
1515
- '**/Doxyfile' # Ignore changes to Doxygen config
1616
- 'docs/**' # Ignore documentation folder
1717
- '*.md' # Ignore Markdown files

0 commit comments

Comments
 (0)