Skip to content

Commit 2b1e0d7

Browse files
authored
ci(template): Add helm-lint result to combined checks result (#643)
1 parent 75b7264 commit 2b1e0d7

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

template/.github/workflows/build.yaml.j2

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,6 +404,7 @@ jobs:
404404
needs:
405405
- detect-changes
406406
- cargo-udeps
407+
- helm-lint
407408
- build-container-image
408409
- publish-index-manifest
409410
- publish-helm-chart
@@ -416,14 +417,15 @@ jobs:
416417
env:
417418
OPENSHIFT_PREFLIGHT_CHECK_RESULT: ${{ needs.openshift-preflight-check.result }}
418419
CARGO_UDEPS_RESULT: ${{ needs.cargo-udeps.result }}
420+
HELM_LINT_RESULT: ${{ needs.helm-lint.result }}
419421
shell: bash
420422
run: |
421423
set -euo pipefail
422424
[ -n "${RUNNER_DEBUG+set}" ] && set -x
423425

424426
COMBINED_CHECKS_RESULT="success"
425427

426-
if [ "$OPENSHIFT_PREFLIGHT_CHECK_RESULT" == "failure" ] || [ "$CARGO_UDEPS_RESULT" == "failure" ]; then
428+
if [ "$OPENSHIFT_PREFLIGHT_CHECK_RESULT" == "failure" ] || [ "$CARGO_UDEPS_RESULT" == "failure" ] || [ "$HELM_LINT_RESULT" == "failure" ]; then
427429
COMBINED_CHECKS_RESULT="failure"
428430
fi
429431

0 commit comments

Comments
 (0)