From b7a1ae4fac5d3b440e4a2d50cf20fca56841bb9e Mon Sep 17 00:00:00 2001 From: Alison Shao <54658187+alisonshao@users.noreply.github.com> Date: Fri, 20 Mar 2026 23:48:29 -0700 Subject: [PATCH] Fix /rerun-stage dispatch failure for non-AMD stages (#21076) Co-authored-by: Alison Shao --- scripts/ci/utils/slash_command_handler.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/ci/utils/slash_command_handler.py b/scripts/ci/utils/slash_command_handler.py index ea1c8f4a4..582e68ed0 100644 --- a/scripts/ci/utils/slash_command_handler.py +++ b/scripts/ci/utils/slash_command_handler.py @@ -340,7 +340,6 @@ def handle_rerun_stage( } else: inputs = { - "version": "release", "target_stage": stage_name, "pr_head_sha": pr_head_sha, } @@ -352,7 +351,7 @@ def handle_rerun_stage( if is_amd_stage: inputs = {"target_stage": stage_name} else: - inputs = {"version": "release", "target_stage": stage_name} + inputs = {"target_stage": stage_name} # Record dispatch time before triggering dispatch_time = time.time()