From 2e0e9347e39f0eb9d349d5cf6806480f07f5f787 Mon Sep 17 00:00:00 2001 From: Sever Date: Sun, 18 Feb 2024 23:53:54 +0100 Subject: [PATCH] Update test-helm-chart.yml --- .github/workflows/test-helm-chart.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-helm-chart.yml b/.github/workflows/test-helm-chart.yml index 3eebd69f773..53102379125 100644 --- a/.github/workflows/test-helm-chart.yml +++ b/.github/workflows/test-helm-chart.yml @@ -57,12 +57,12 @@ jobs: # run version check only if not dev as in dev we have a `x.y.z-dev` version # x.y.z gets bumped automatically when doing a release - name: Run chart-testing (lint) - run: ct lint --config ct.yaml --excluded-charts postgresql,common --target-branch ${{ env.ct-branch }} --check-version-increment=true + run: ct lint --config ct.yaml --excluded-charts defectdojo/charts --target-branch ${{ env.ct-branch }} --check-version-increment=true if: ${{ env.changed == 'true' && env.ct-branch != 'dev' && env.ct-branch != 'bugfix' }} # run all checks but version increment always when something changed - name: Run chart-testing (lint) - run: ct lint --config ct.yaml --excluded-charts postgresql,common --target-branch ${{ env.ct-branch }} --check-version-increment=false + run: ct lint --config ct.yaml --excluded-charts defectdojo/charts --target-branch ${{ env.ct-branch }} --check-version-increment=false if: env.changed == 'true' # - name: Create kind cluster