From 8b37db4b7c2a498d0f7524a242ab126ff6329593 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=E1=B4=87=CA=80=C9=B4=E1=B4=85=20S=E1=B4=84=CA=9C?= =?UTF-8?q?=E1=B4=8F=CA=80=C9=A2=E1=B4=87=CA=80s?= Date: Thu, 6 Jan 2022 12:43:40 +0100 Subject: [PATCH] ci: Update validation CI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Bᴇʀɴᴅ Sᴄʜᴏʀɢᴇʀs --- .github/workflows/charts-validate.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/charts-validate.yaml b/.github/workflows/charts-validate.yaml index de10703e..a7742d71 100644 --- a/.github/workflows/charts-validate.yaml +++ b/.github/workflows/charts-validate.yaml @@ -213,6 +213,7 @@ jobs: needs: - changes-lint if: + always() && needs.changes-lint.outputs.detected == 'true' name: Lint charts strategy: @@ -259,6 +260,9 @@ jobs: unittest: needs: - lint_success + if: | + always() && + needs.lint_success.result == 'success' name: Run unit tests runs-on: ubuntu-20.04 steps: @@ -295,6 +299,8 @@ jobs: - changes-install - lint_success if: + always() && + needs.lint_success.result == 'success' && needs.changes-install.outputs.detected == 'true' name: Install charts strategy: