From 09faf0e3861d12fd3850a0784fd0874ca8e3b2aa Mon Sep 17 00:00:00 2001 From: Allison Piper Date: Wed, 26 Feb 2025 15:58:27 -0500 Subject: [PATCH] Expose CCCL branch controls on Actions UI for RAPIDS workflow. --- .github/workflows/build-rapids.yml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-rapids.yml b/.github/workflows/build-rapids.yml index 58513050e4f..003fba3e2a4 100644 --- a/.github/workflows/build-rapids.yml +++ b/.github/workflows/build-rapids.yml @@ -2,10 +2,26 @@ name: Build all RAPIDS repositories on: workflow_dispatch: + inputs: + override_cccl_tag: + description: "If set, override the tag used when pulling the CCCL repository into RAPIDS." + required: false + default: "" + type: string + override_cccl_version: + description: "If set, override the version used by rapids-cmake to patch CCCL." + required: false + default: "" + type: string + enable_slack_alerts: + description: "If true, a message will be posted to the CCCL GHA CI Alert channel if the workflow fails." + required: false + default: false + type: boolean workflow_call: inputs: override_cccl_tag: - description: "If set, override the tag used for the CCCL repository." + description: "If set, override the tag used when pulling the CCCL repository into RAPIDS." required: false default: "" type: string