From 7572afaa497d9b4579d342c99d02f6904d3933d9 Mon Sep 17 00:00:00 2001 From: Jinzhe Zeng Date: Tue, 20 Dec 2022 15:17:16 -0500 Subject: [PATCH] fix pass action --- .github/workflows/test.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e19f85d43..9e2cbf607 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -30,5 +30,9 @@ jobs: pass: needs: [build] runs-on: ubuntu-latest + if: always() steps: - - run: echo "All jobs passed" + - name: Decide whether the needed jobs succeeded or failed + uses: re-actors/alls-green@release/v1 + with: + jobs: ${{ toJSON(needs) }}