Normalize naming: "sonobuoy fast" -> "sonobuoy quick" (#389)

This commit is contained in:
Malte Poll 2022-10-28 11:01:31 +02:00 committed by GitHub
parent 4ef94834ed
commit 9297a4e8a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View File

@ -40,7 +40,7 @@ inputs:
description: "The resource group to use" description: "The resource group to use"
required: false required: false
test: 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 required: true
sonobuoyTestSuiteCmd: sonobuoyTestSuiteCmd:
description: "The sonobuoy test suite to run." description: "The sonobuoy test suite to run."
@ -50,7 +50,7 @@ runs:
using: "composite" using: "composite"
steps: steps:
- name: Check input - 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 shell: bash
run: | run: |
echo "Invalid input for test field: ${{ inputs.test }}" echo "Invalid input for test field: ${{ inputs.test }}"
@ -117,8 +117,8 @@ runs:
# Test payloads # Test payloads
# #
- name: Run sonobuoy fast test - name: Run sonobuoy quick test
if: inputs.test == 'sonobuoy fast' if: inputs.test == 'sonobuoy quick'
uses: ./.github/actions/e2e_sonobuoy uses: ./.github/actions/e2e_sonobuoy
with: with:
sonobuoyTestSuiteCmd: "--mode quick" sonobuoyTestSuiteCmd: "--mode quick"

View File

@ -23,7 +23,7 @@ on:
description: "The test to run." description: "The test to run."
type: choice type: choice
options: options:
- "sonobuoy fast" - "sonobuoy quick"
- "sonobuoy full" - "sonobuoy full"
- "autoscaling" - "autoscaling"
required: true required: true

View File

@ -23,7 +23,7 @@ on:
description: "The test to run." description: "The test to run."
type: choice type: choice
options: options:
- "sonobuoy fast" - "sonobuoy quick"
- "sonobuoy full" - "sonobuoy full"
- "autoscaling" - "autoscaling"
required: true required: true