From 89390d2289307df3c4c08336d0f02368b57e74d9 Mon Sep 17 00:00:00 2001 From: Thomas Stringer Date: Wed, 29 Jun 2022 21:15:08 -0400 Subject: [PATCH] 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. --- .github/workflows/ci.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ad1ba3b..a6ab720 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -5,9 +5,13 @@ on: push: branches: - main + paths-ignore: + - '**/*.md' pull_request: branches: - main + paths-ignore: + - '**/*.md' jobs: ci: