From f2cdc8495528897505f890ff69f00384de9f8414 Mon Sep 17 00:00:00 2001 From: Alex Gartner Date: Wed, 6 Nov 2024 14:41:07 -0800 Subject: [PATCH] only check failed status (fork will be skipped) --- .github/workflows/e2e.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 82271c3232..4aadf4900e 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -306,7 +306,7 @@ jobs: - run: | result="${{ needs.build-zetanode.result }}" - if [[ $result != "success" || $result == "skipped" ]]; then + if [[ $result == "failed" ]]; then exit 1 fi result="${{ needs.e2e.result }}"