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 <idryomov@gmail.com>
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