From e610be2ad3d2962e085ec00e4c755a9562dd06ab Mon Sep 17 00:00:00 2001 From: Fred Emmott Date: Fri, 20 Oct 2023 13:29:01 -0500 Subject: [PATCH] Don't trigger full builds for docs-only changes --- .github/workflows/ci.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 78a2c1b..25dd5d1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,5 +1,13 @@ name: Continuous Integration -on: [push, pull_request] +on: + push: + paths-ignore: + - 'docs/**' + - '.github/workflows/pages.yml' + pull_request: + paths-ignore: + - 'docs/**' + - '.github/workflows/pages.yml' jobs: build: name: Build (${{matrix.config}})