]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-build.git/commitdiff
ceph-windows-pull-requests: Skip if only GHA... 2451/head
authorZack Cerza <zack@cerza.org>
Wed, 24 Sep 2025 18:04:58 +0000 (12:04 -0600)
committerZack Cerza <zack@cerza.org>
Wed, 24 Sep 2025 18:09:28 +0000 (12:09 -0600)
.. or qa changed.

Signed-off-by: Zack Cerza <zack@cerza.org>
ceph-windows-pull-requests/build/check_docs_pr_only

index 7659f4a76c289e9daf73d69fc44bac0127cd622e..82854b8b326c39e71d2df0f91e5296717b4f88e0 100644 (file)
@@ -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