From 6cfcdcf3e68392d1b2e5c7f70f1208adff2269be Mon Sep 17 00:00:00 2001 From: Thomas Stringer Date: Wed, 29 Jun 2022 21:12:43 -0400 Subject: [PATCH] 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. --- .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: