From 5cd459ff2d648f143d0a9c24f96f89aca40616c8 Mon Sep 17 00:00:00 2001 From: Michael Kaye <1917473+michaelkaye@users.noreply.github.com> Date: Mon, 3 Apr 2023 09:54:49 +0100 Subject: [PATCH] Check kiwi_enable value for '1'-ness, not presence (#10482) Change from string-y checking for true ('0' is true) to comparison against the string '1', which is only true if exactly equal to '1'. This has been submitting more test results to Kiwi than we want/need. --- .github/workflows/cypress.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cypress.yaml b/.github/workflows/cypress.yaml index e821d9e523..37ba2b4f9b 100644 --- a/.github/workflows/cypress.yaml +++ b/.github/workflows/cypress.yaml @@ -232,7 +232,7 @@ jobs: - tests environment: Kiwi runs-on: ubuntu-latest - if: ${{ needs.prepare.outputs.kiwi_enable }} + if: ${{ needs.prepare.outputs.kiwi_enable == '1' }} steps: - name: Download all zip files uses: actions/download-artifact@v3