File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -33,17 +33,20 @@ jobs:
3333 fi
3434
3535 - name : Run chart-testing (lint)
36- run : ct lint
36+ if : steps.list-changed.outputs.changed == 'true'
37+ run : ct lint --target-branch ${{ github.event.repository.default_branch }}
3738
3839 - name : Create kind cluster
39- uses : helm/kind-action@v1.12.0
4040 if : steps.list-changed.outputs.changed == 'true'
41+ uses : helm/kind-action@v1.12.0
4142
4243 - name : Install LoadBalancer
44+ if : steps.list-changed.outputs.changed == 'true'
4345 run : |-
4446 kubectl config use-context kind-chart-testing
4547 kubectl apply -f https://raw.githubusercontent.com/metallb/metallb/v0.13.10/config/manifests/metallb-native.yaml
4648 kubectl apply -f .github/metallb-configmap.yaml
4749
4850 - name : Run chart-testing (install)
51+ if : steps.list-changed.outputs.changed == 'true'
4952 run : ct install
You can’t perform that action at this time.
0 commit comments