Skip to content

Commit 91b0915

Browse files
authored
do not run github actions if only markdown changes (#229)
why: * these docs only changes don't need to be tested * running CI takes over 10 minutes, so this shaves that off
1 parent 2672449 commit 91b0915

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22
name: CI
33
'on':
44
pull_request:
5+
paths-ignore:
6+
- '*.md' # Markdown docs need no linting/testing etc.
57
push:
8+
paths-ignore:
9+
- '*.md'
610
branches:
711
- master
812
schedule:

0 commit comments

Comments
 (0)