From 83254f2c3c93f024840228b0accc97e08768e5e6 Mon Sep 17 00:00:00 2001 From: Vishal Choudhary Date: Wed, 25 Oct 2023 19:23:05 +0530 Subject: [PATCH] fix: replace base_ref with ref_name in helm test GHA (#8735) Signed-off-by: Vishal Choudhary --- .github/workflows/helm-test.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/helm-test.yaml b/.github/workflows/helm-test.yaml index 51359ebfbe..43033295bc 100644 --- a/.github/workflows/helm-test.yaml +++ b/.github/workflows/helm-test.yaml @@ -36,11 +36,13 @@ jobs: python-version: 3.7 - name: Set up chart-testing uses: helm/chart-testing-action@e8788873172cb653a90ca2e819d79d65a66d4e76 # v2.4.0 + - name: Set reference + run: echo "REF=${{ github.event.pull_request && github.base_ref || github.ref_name }}" >> $GITHUB_ENV - name: Run chart-testing (lint) run: | - if [[ $(ct list-changed --target-branch=${{ github.base_ref }}) ]]; + if [[ $(ct list-changed --target-branch=$REF) ]]; then - ct lint --target-branch=${{ github.base_ref }} --check-version-increment=false --validate-maintainers=false + ct lint --target-branch=$REF --check-version-increment=false --validate-maintainers=false fi - name: Setup test env uses: ./.github/actions/setup-test-env