Skip to content

Commit 0b5e270

Browse files
Merge pull request #182 from nrwl/szymon/fix/skip-ci-steps-when-no-chart-change
fix(repo): skip CI steps when no chart changes
2 parents 87bb86b + 3a389f3 commit 0b5e270

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/chart_lint_and_test.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ jobs:
4141
uses: helm/kind-action@v1.10.0
4242

4343
- name: Install MongoDB
44+
if: steps.list-changed.outputs.changed == 'true'
4445
run: |
4546
helm install mongo oci://registry-1.docker.io/bitnamicharts/mongodb \
4647
--version 16.5.32 \
@@ -50,6 +51,7 @@ jobs:
5051
--wait
5152
5253
- name: Install Valkey
54+
if: steps.list-changed.outputs.changed == 'true'
5355
run: |
5456
helm install valkey oci://registry-1.docker.io/bitnamicharts/valkey \
5557
--version 3.0.22 \

0 commit comments

Comments
 (0)