From: Zack Cerza Date: Wed, 24 Sep 2025 18:04:22 +0000 (-0600) Subject: ceph-pr-api: Skip if only GHA or qa changed X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=c4d1e85cbbcdbc34b05d698a0782835a41b79f31;p=ceph-build.git ceph-pr-api: Skip if only GHA or qa changed Signed-off-by: Zack Cerza --- diff --git a/ceph-pr-api/build/build b/ceph-pr-api/build/build index b42d410f..0f07fbb2 100644 --- a/ceph-pr-api/build/build +++ b/ceph-pr-api/build/build @@ -2,8 +2,10 @@ 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 make check or API 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 make check or API tests." mkdir -p $WORKSPACE/build/out echo "File created to avoid Jenkins' Artifact Archiving plugin from hanging" > $WORKSPACE/build/out/mgr.foo.log exit 0