From 43c7842facbbb5e9698331585c71155753046b52 Mon Sep 17 00:00:00 2001 From: Patrick Stevens <3138005+Smaug123@users.noreply.github.com> Date: Sun, 14 Jul 2024 11:11:32 +0100 Subject: [PATCH] Fix required checks (#65) --- .github/workflows/lint.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 4378424..8e9e087 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -19,8 +19,10 @@ jobs: run: "nix flake check --all-systems" all-required-checks-complete: + if: ${{ always() }} runs-on: "ubuntu-latest" steps: - - run: "echo \"All required checks complete.\"" - needs: - - "flake-check" + - uses: Smaug123/all-required-checks-complete-action@05b40a8c47ef0b175ea326e9abb09802cb67b44e + with: + needs-context: ${{ toJSON(needs) }} + needs: [ "flake-check" ]