From 26e22f73dcf1a4508df0918f627ee56c08e0ea75 Mon Sep 17 00:00:00 2001 From: Jinzhe Zeng Date: Tue, 20 Dec 2022 22:48:53 -0500 Subject: [PATCH] fix pass action (#400) --- .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 e19f85d4..9e2cbf60 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) }}