File tree Expand file tree Collapse file tree
template/.github/workflows Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments