From a3c49846230085b32670224dd613a59ff0d39089 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Thu, 30 May 2024 08:37:24 -0400 Subject: [PATCH] Skip CI if changes are limited to non-code paths --- .github/workflows/ci.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d794786f1..b32f519bc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,7 +1,18 @@ name: CI -on: [push, pull_request] + +on: + push: + paths-ignore: + - 'contrib/**' + - 'docs/**' + pull_request: + paths-ignore: + - 'contrib/**' + - 'docs/**' + permissions: contents: read + jobs: build: runs-on: ubuntu-latest