From fdba1912ad7958fe1e7616dc554c8a605087ab22 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Wed, 24 Sep 2025 12:04:58 -0600 Subject: [PATCH] ceph-windows-pull-requests: Skip if only GHA... .. or qa changed. Signed-off-by: Zack Cerza --- ceph-windows-pull-requests/build/check_docs_pr_only | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ceph-windows-pull-requests/build/check_docs_pr_only b/ceph-windows-pull-requests/build/check_docs_pr_only index 7659f4a7..82854b8b 100644 --- a/ceph-windows-pull-requests/build/check_docs_pr_only +++ b/ceph-windows-pull-requests/build/check_docs_pr_only @@ -4,7 +4,9 @@ set -o pipefail docs_pr_only container_pr_only -if [[ "$DOCS_ONLY" = true || "$CONTAINER_ONLY" = true ]]; then - echo "Only the doc/ or container/ dir changed. No need to run Ceph Windows tests." +gha_pr_only +qa_pr_only +if [[ "$DOCS_ONLY" = true || "$CONTAINER_ONLY" = true || "$GHA_ONLY" == true || "$QA_ONLY" == true ]]; then + echo "Only the doc/, container/, qa/ or .github/ dir changed. No need to run Ceph Windows tests." exit 0 fi -- 2.39.5