Skip to content

Commit b72a2cc

Browse files
authored
Merge pull request #19 from erkannt/patch-4
add missing 'list-changed' step to ci workflow
2 parents af68126 + 47fd3e4 commit b72a2cc

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/lint-test.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,14 @@ jobs:
2828
with:
2929
version: v3.3.0
3030

31+
- name: Run chart-testing (list-changed)
32+
id: list-changed
33+
run: |
34+
changed=$(ct list-changed --config ct.yaml)
35+
if [[ -n "$changed" ]]; then
36+
echo "::set-output name=changed::true"
37+
fi
38+
3139
- name: Run chart-testing (lint)
3240
run: ct lint --config ct.yaml
3341

0 commit comments

Comments
 (0)