From 9297a4e8a2eb0ab2a9f6bb45fdd74ccf7179cce2 Mon Sep 17 00:00:00 2001 From: Malte Poll Date: Fri, 28 Oct 2022 11:01:31 +0200 Subject: [PATCH] Normalize naming: "sonobuoy fast" -> "sonobuoy quick" (#389) --- .github/actions/e2e_test/action.yml | 8 ++++---- .github/workflows/e2e-test-manual-macos.yml | 2 +- .github/workflows/e2e-test-manual.yml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/actions/e2e_test/action.yml b/.github/actions/e2e_test/action.yml index 4621da357..1054d72b9 100644 --- a/.github/actions/e2e_test/action.yml +++ b/.github/actions/e2e_test/action.yml @@ -40,7 +40,7 @@ inputs: description: "The resource group to use" required: false test: - description: "The test to run. Can currently be one of [sonobuoy full, sonobuoy fast, autoscaling]." + description: "The test to run. Can currently be one of [sonobuoy full, sonobuoy quick, autoscaling]." required: true sonobuoyTestSuiteCmd: description: "The sonobuoy test suite to run." @@ -50,7 +50,7 @@ runs: using: "composite" steps: - name: Check input - if: ${{ !contains(fromJson('["sonobuoy full", "sonobuoy fast", "autoscaling"]'), inputs.test) }} + if: ${{ !contains(fromJson('["sonobuoy full", "sonobuoy quick", "autoscaling"]'), inputs.test) }} shell: bash run: | echo "Invalid input for test field: ${{ inputs.test }}" @@ -117,8 +117,8 @@ runs: # Test payloads # - - name: Run sonobuoy fast test - if: inputs.test == 'sonobuoy fast' + - name: Run sonobuoy quick test + if: inputs.test == 'sonobuoy quick' uses: ./.github/actions/e2e_sonobuoy with: sonobuoyTestSuiteCmd: "--mode quick" diff --git a/.github/workflows/e2e-test-manual-macos.yml b/.github/workflows/e2e-test-manual-macos.yml index a607c5797..ced0b37e5 100644 --- a/.github/workflows/e2e-test-manual-macos.yml +++ b/.github/workflows/e2e-test-manual-macos.yml @@ -23,7 +23,7 @@ on: description: "The test to run." type: choice options: - - "sonobuoy fast" + - "sonobuoy quick" - "sonobuoy full" - "autoscaling" required: true diff --git a/.github/workflows/e2e-test-manual.yml b/.github/workflows/e2e-test-manual.yml index 965724e5d..24f24317f 100644 --- a/.github/workflows/e2e-test-manual.yml +++ b/.github/workflows/e2e-test-manual.yml @@ -23,7 +23,7 @@ on: description: "The test to run." type: choice options: - - "sonobuoy fast" + - "sonobuoy quick" - "sonobuoy full" - "autoscaling" required: true