From: Zack Cerza Date: Wed, 24 Sep 2025 18:04:58 +0000 (-0600) Subject: ceph-windows-pull-requests: Skip if only GHA... X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=fdba1912ad7958fe1e7616dc554c8a605087ab22;p=ceph-build.git ceph-windows-pull-requests: Skip if only GHA... .. or qa changed. Signed-off-by: Zack Cerza --- 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