From 2f3f2ee111d8ffce3f42443202a72ff2277060fe Mon Sep 17 00:00:00 2001 From: John Ky Date: Wed, 8 Mar 2023 18:41:40 +1100 Subject: [PATCH] New build-complete job for required checks --- .github/workflows/haskell-linux.yml | 7 +++++++ .github/workflows/haskell.yml | 7 +++++++ 2 files changed, 14 insertions(+) diff --git a/.github/workflows/haskell-linux.yml b/.github/workflows/haskell-linux.yml index fe05368c95b..1bfe1b88b68 100644 --- a/.github/workflows/haskell-linux.yml +++ b/.github/workflows/haskell-linux.yml @@ -184,6 +184,13 @@ jobs: # with: # limit-access-to-actor: true + build-complete: + needs: [linux_ci] + runs-on: ubuntu-latest + steps: + - name: Build complete + run: echo 'Build complete' + release: needs: [linux_ci] if: ${{ startsWith(github.ref, 'refs/tags') }} diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml index 2ae8eeb7bb1..fdec589a4ff 100644 --- a/.github/workflows/haskell.yml +++ b/.github/workflows/haskell.yml @@ -212,6 +212,13 @@ jobs: # with: # limit-access-to-actor: true + build-complete: + needs: [build] + runs-on: ubuntu-latest + steps: + - name: Build complete + run: echo 'Build complete' + release: needs: [build] if: ${{ startsWith(github.ref, 'refs/tags') }}