We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f01ee87 commit 2e65133Copy full SHA for 2e65133
.github/workflows/lint-test.yaml
@@ -33,17 +33,20 @@ jobs:
33
fi
34
35
- name: Run chart-testing (lint)
36
- run: ct lint
+ if: steps.list-changed.outputs.changed == 'true'
37
+ run: ct lint --target-branch ${{ github.event.repository.default_branch }}
38
39
- name: Create kind cluster
- uses: helm/[email protected]
40
if: steps.list-changed.outputs.changed == 'true'
41
+ uses: helm/[email protected]
42
43
- name: Install LoadBalancer
44
45
run: |-
46
kubectl config use-context kind-chart-testing
47
kubectl apply -f https://raw.githubusercontent.com/metallb/metallb/v0.13.10/config/manifests/metallb-native.yaml
48
kubectl apply -f .github/metallb-configmap.yaml
49
50
- name: Run chart-testing (install)
51
52
run: ct install
0 commit comments