From 13466e0ed51670a3b68b69bc1a4b3a66ccb921c1 Mon Sep 17 00:00:00 2001 From: "Valentin D. Pinkman" Date: Tue, 1 Aug 2023 18:51:06 +0200 Subject: [PATCH] ci(reporting): fix wrong conditional on test.yml for cli test success state --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 232a62b8d06e..39a40a9e77ff 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -194,7 +194,7 @@ jobs: status: "${{ needs.test-docs.result }}", }, cli: { - pass: ${{ needs.test-cli.outputs.test-fail != 'success' && needs.test-cli.outputs.fail != '1' }}, + pass: ${{ needs.test-cli.outputs.test-fail == 'success' && needs.test-cli.outputs.fail != '1' }}, status: "${{ needs.test-docs.result }}", }, libraries: {