From 88f97b3576ad0926c493ca00e707dd15993c282c Mon Sep 17 00:00:00 2001 From: Ilya Dryomov Date: Tue, 3 Mar 2026 13:46:29 +0100 Subject: [PATCH] ceph-pull-requests: don't skip qa-only PRs This is a partial revert of commit 78849bdf7d0d ("ceph-pull-requests: Skip qa-only PRs"). Unfortunately "make check" needs to be run even on qa-only PRs at least once to get linter coverage for files under qa/. Revert to running "make check" on qa-only PRs for ceph-pull-requests but continue skipping it for ceph-pull-requests-arm64. Signed-off-by: Ilya Dryomov --- ceph-pull-requests/build/build | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ceph-pull-requests/build/build b/ceph-pull-requests/build/build index 8aa7402e..5d71edb4 100644 --- a/ceph-pull-requests/build/build +++ b/ceph-pull-requests/build/build @@ -3,9 +3,8 @@ docs_pr_only container_pr_only 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." +if [[ "$DOCS_ONLY" = true || "$CONTAINER_ONLY" = true || "$GHA_ONLY" == true ]]; then + echo "Only the doc/, container/ or .github/ dir changed. No need to run make check." exit 0 fi -- 2.47.3