From f1062ae5ed7b2cbfa52c9a6d0b9af59ea7fe5c6d Mon Sep 17 00:00:00 2001 From: Scott Brenner Date: Tue, 9 Apr 2024 22:18:26 -0700 Subject: [PATCH] Skip build suite for changes to Markdown files --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e29791f651..1c63607c5e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,8 @@ -on: [push, pull_request] +on: + push: + pull_request: + paths-ignore: + - '**.md' name: Continuous integration