From 1e170e64292eb8c57803360b2cc62b99a9d96bea Mon Sep 17 00:00:00 2001 From: "Walter.Kolczynski" Date: Fri, 18 Aug 2023 14:34:50 -0500 Subject: [PATCH] Add filter to doc build action for PRs A path filter was applied to pushes, but none was applied to PRs, causing the GH action to build documentation to fire every time a PR is opened or updated. Resolves #1791 --- .github/workflows/docs.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index 6a4086764b..20e4a97f9c 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -11,6 +11,8 @@ on: - docs/** pull_request_target: types: [issues, opened, reopened, synchronize] + paths: + - docs/** jobs: