From c17f3361e510a37b451f3874229fa4fc4e4aecab Mon Sep 17 00:00:00 2001 From: Techassi Date: Fri, 28 Aug 2026 15:33:08 +0200 Subject: [PATCH] ci(template): Add helm-lint result to combined checks result --- template/.github/workflows/build.yaml.j2 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/template/.github/workflows/build.yaml.j2 b/template/.github/workflows/build.yaml.j2 index e9771811..3a694800 100644 --- a/template/.github/workflows/build.yaml.j2 +++ b/template/.github/workflows/build.yaml.j2 @@ -404,6 +404,7 @@ jobs: needs: - detect-changes - cargo-udeps + - helm-lint - build-container-image - publish-index-manifest - publish-helm-chart @@ -416,6 +417,7 @@ jobs: env: OPENSHIFT_PREFLIGHT_CHECK_RESULT: ${{ needs.openshift-preflight-check.result }} CARGO_UDEPS_RESULT: ${{ needs.cargo-udeps.result }} + HELM_LINT_RESULT: ${{ needs.helm-lint.result }} shell: bash run: | set -euo pipefail @@ -423,7 +425,7 @@ jobs: COMBINED_CHECKS_RESULT="success" - if [ "$OPENSHIFT_PREFLIGHT_CHECK_RESULT" == "failure" ] || [ "$CARGO_UDEPS_RESULT" == "failure" ]; then + if [ "$OPENSHIFT_PREFLIGHT_CHECK_RESULT" == "failure" ] || [ "$CARGO_UDEPS_RESULT" == "failure" ] || [ "$HELM_LINT_RESULT" == "failure" ]; then COMBINED_CHECKS_RESULT="failure" fi