From f4a7461c556d4df6a4557abd0f706596734c9b20 Mon Sep 17 00:00:00 2001 From: Jarek Potiuk Date: Fri, 29 Mar 2024 15:42:11 +0100 Subject: [PATCH] Remove image tag from Helm test name The image tag makes no difference. While we are using the image to run Helm tests (for now) the fact that we are using specific image shoudl not be part of the job name (it's printed in the steps when the image is pulled). --- .github/workflows/helm-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/helm-tests.yml b/.github/workflows/helm-tests.yml index 73a8abd1b9590..f6a2df6041f22 100644 --- a/.github/workflows/helm-tests.yml +++ b/.github/workflows/helm-tests.yml @@ -40,7 +40,7 @@ on: # yamllint disable-line rule:truthy jobs: tests-helm: timeout-minutes: 80 - name: "Unit tests Helm: ${{ matrix.helm-test-package }}:${{ inputs.image-tag }}" + name: "Unit tests Helm: ${{ matrix.helm-test-package }}" runs-on: ${{ fromJSON(inputs.runs-on) }} strategy: fail-fast: false