From 2171f77ac588be72e272ee2190836db434208fb2 Mon Sep 17 00:00:00 2001 From: Sayak Paul Date: Mon, 16 Sep 2024 12:09:31 +0530 Subject: [PATCH] [CI] make runner_type restricted. (#9441) make runner_type restricted. --- .github/workflows/ssh-runner.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ssh-runner.yml b/.github/workflows/ssh-runner.yml index cf32dec6b2..0d4fe1578b 100644 --- a/.github/workflows/ssh-runner.yml +++ b/.github/workflows/ssh-runner.yml @@ -4,8 +4,12 @@ on: workflow_dispatch: inputs: runner_type: - description: 'Type of runner to test (a10 or t4)' + description: 'Type of runner to test (aws-g6-4xlarge-plus: a10 or aws-g4dn-2xlarge: t4)' + type: choice required: true + options: + - aws-g6-4xlarge-plus + - aws-g4dn-2xlarge docker_image: description: 'Name of the Docker image' required: true