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