From 840d80a1785cd7ad03816c74d76bdade8a0811f3 Mon Sep 17 00:00:00 2001 From: John Murret Date: Tue, 28 Mar 2023 15:10:26 -0600 Subject: [PATCH] using consuls own custom runner pool. --- .github/scripts/get_runner_classes.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/scripts/get_runner_classes.sh b/.github/scripts/get_runner_classes.sh index 8cc29ec9643fb..4834e9e929174 100755 --- a/.github/scripts/get_runner_classes.sh +++ b/.github/scripts/get_runner_classes.sh @@ -14,9 +14,9 @@ case "$GITHUB_REPOSITORY" in ;; *) # shellcheck disable=SC2129 - echo "compute-small=['custom', 'linux', 'small']" >> "$GITHUB_OUTPUT" - echo "compute-medium=['custom', 'linux', 'medium']" >> "$GITHUB_OUTPUT" - echo "compute-large=['custom', 'linux', 'large']" >> "$GITHUB_OUTPUT" - echo "compute-xl=['custom', 'linux', 'xl']" >> "$GITHUB_OUTPUT" + echo "compute-small=['custom-linux-s-consul-latest']" >> "$GITHUB_OUTPUT" + echo "compute-medium=['custom-linux-m-consul-latest']" >> "$GITHUB_OUTPUT" + echo "compute-large=['custom-linux-l-consul-latest']" >> "$GITHUB_OUTPUT" + echo "compute-xl=['custom-linux-xl-consul-latest']" >> "$GITHUB_OUTPUT" ;; esac