From 9050638d78b2620e73708a51adf7b4166310335a Mon Sep 17 00:00:00 2001 From: Greg Lucas Date: Sun, 19 Feb 2023 13:03:15 -0700 Subject: [PATCH] CI: Don't run test workflows for doc changes --- .github/workflows/tests.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9f07eba44344..3d2629290b57 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,6 +12,12 @@ on: pull_request: branches-ignore: - v[0-9]+.[0-9]+.[0-9x]+-doc + paths-ignore: + # Skip running tests if changes are only in documentation directories + - 'doc/**' + - 'examples/**' + - 'plot_types/**' + - 'tutorials/**' schedule: # 5:47 UTC on Saturdays - cron: "47 5 * * 6"