Add markdown files to ignored files in the CI pipeline

The CI pipeline should not be running if only markdown files are
modified, so they should be ignored.
This commit is contained in:
Thomas Stringer 2022-06-29 21:12:43 -04:00
parent fee68ac26e
commit 6cfcdcf3e6

View file

@ -5,9 +5,13 @@ on:
push:
branches:
- main
paths-ignore:
- '**/*.md'
pull_request:
branches:
- main
paths-ignore:
- '**/*.md'
jobs:
ci: