Add markdown files to ignored files in the CI pipeline (#25)

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:15:08 -04:00 committed by GitHub
parent fee68ac26e
commit 89390d2289
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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