Skip to content

Commit

Permalink
Merge pull request #4954 from input-output-hk/newhoggy/new-build-comp…
Browse files Browse the repository at this point in the history
…lete-job-for-required-checks

New build-complete job for required checks
  • Loading branch information
angerman authored Mar 8, 2023
2 parents 3764e26 + 2f3f2ee commit 751f22b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/haskell-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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') }}
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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') }}
Expand Down

0 comments on commit 751f22b

Please sign in to comment.