From afe10acd0e2f76a19971cc50e2932966e0ec64c4 Mon Sep 17 00:00:00 2001 From: Trevor Coleman Date: Fri, 15 Dec 2023 13:43:42 -0500 Subject: [PATCH] ci(ir-docs): Skip build-docs for PRs from forked repos --- .circleci/config.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index b8f9eca82..90cb238ba 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -20,6 +20,11 @@ anchors: - master - beta - alpha + releases_and_forks: &releases_and_forks + - master + - beta + - alpha + - /pull\/[0-9]+/ # forks will have the branch set to /pull/ # All branches release_branch_filter: &release_branch_filter ignore: /.*/ @@ -343,7 +348,7 @@ workflows: <<: *ir_docs_config filters: branches: - ignore: *release_branch_names + ignore: *releases_and_forks # Allows for manual publishing of docs independent of deployment