We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4df7c3 commit 57b817aCopy full SHA for 57b817a
.github/workflows/lint-test.yml
@@ -29,6 +29,14 @@ jobs:
29
with:
30
version: v3.4.0
31
32
+ - name: Run chart-testing (list-changed)
33
+ id: list-changed
34
+ run: |
35
+ changed=$(ct list-changed)
36
+ if [[ -n "$changed" ]]; then
37
+ echo "::set-output name=changed::true"
38
+ fi
39
+
40
- name: Run chart-testing (lint)
41
run: ct lint --config ct.yaml
42
@@ -39,8 +47,11 @@ jobs:
47
48
- name: Create kind cluster
49
uses: helm/[email protected]
50
+ if: steps.list-changed.outputs.changed == 'true'
51
43
52
- name: Run chart-testing (install)
44
53
run: |
45
54
kubectl create namespace cortex
46
55
ct install --config ct.yaml --namespace cortex
56
57
0 commit comments