File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -33,17 +33,20 @@ jobs:
33
33
fi
34
34
35
35
- 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 }}
37
38
38
39
- name : Create kind cluster
39
-
40
40
if : steps.list-changed.outputs.changed == 'true'
41
+
41
42
42
43
- name : Install LoadBalancer
44
+ if : steps.list-changed.outputs.changed == 'true'
43
45
run : |-
44
46
kubectl config use-context kind-chart-testing
45
47
kubectl apply -f https://raw.githubusercontent.com/metallb/metallb/v0.13.10/config/manifests/metallb-native.yaml
46
48
kubectl apply -f .github/metallb-configmap.yaml
47
49
48
50
- name : Run chart-testing (install)
49
- run : ct install
51
+ if : steps.list-changed.outputs.changed == 'true'
52
+ run : ct install --target-branch ${{ github.event.repository.default_branch }}
You can’t perform that action at this time.
0 commit comments