From a91ff01c33474c07393b75c16e568f57c60f178e Mon Sep 17 00:00:00 2001 From: James Lamb Date: Thu, 5 Jun 2025 13:27:32 -0500 Subject: [PATCH 1/2] rapids-github-run-id: raise error if no run ID found --- tools/rapids-github-run-id | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tools/rapids-github-run-id b/tools/rapids-github-run-id index bebc13f..b195daf 100755 --- a/tools/rapids-github-run-id +++ b/tools/rapids-github-run-id @@ -75,4 +75,9 @@ case "${RAPIDS_BUILD_TYPE}" in ;; esac +if [[ -z "${run_id}" ]]; then + rapids-echo-stderr "ERROR: failed to find a GitHub Actions run for [RAPIDS_BUILD_TYPE=${RAPIDS_BUILD_TYPE}, RAPID_REPOSITORY=${RAPIDS_REPOSITORY}, RAPIDS_REF_NAME=${RAPIDS_REF_NAME}, RAPIDS_SHA=${RAPIDS_SHA}]" + exit 1 +fi + echo -n "${run_id}" From 73d53cb28d1068ec345653064379b390ea6e8d92 Mon Sep 17 00:00:00 2001 From: James Lamb Date: Thu, 5 Jun 2025 15:16:33 -0500 Subject: [PATCH 2/2] empty commit