From b19cf0aadf7190b8a2f10ffdc1b150189cb2ed33 Mon Sep 17 00:00:00 2001 From: Joseph Macaranas <145489236+jayhawk-commits@users.noreply.github.com> Date: Tue, 4 Nov 2025 14:17:37 -0500 Subject: [PATCH] Revert "Disable therock summary check, make it always positive (#1675)" (#1686) This reverts commit 0c32b90130a3be16ebe48a301f7c61a5d0e2120e. --- .github/workflows/therock-ci.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/therock-ci.yml b/.github/workflows/therock-ci.yml index 61416d523c..8c56bc6cd7 100644 --- a/.github/workflows/therock-ci.yml +++ b/.github/workflows/therock-ci.yml @@ -124,9 +124,7 @@ jobs: | jq --raw-output \ 'map_values(select(.result!="success" and .result!="skipped")) | keys | join(",")' \ )" - exit 0 - # TODO: uncomment when theRock CI is no longer requirement for merge - # if [[ "${FAILED_JOBS}" != "" ]]; then - # echo "The following jobs failed: ${FAILED_JOBS}" - # exit 1 - # fi + if [[ "${FAILED_JOBS}" != "" ]]; then + echo "The following jobs failed: ${FAILED_JOBS}" + exit 1 + fi