Skip to content

Commit

Permalink
Merge pull request #741 from peternied/merge-blocking-job
Browse files Browse the repository at this point in the history
Add job that passed when all other CI jobs have completed
  • Loading branch information
peternied authored Jun 19, 2024
2 parents 39cf3b7 + 1488d90 commit f91e12d
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,4 +167,17 @@ jobs:
--exclude-mail
fail: true
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

all-ci-checks-pass:
needs:
- cdk-tests
- console-library-tests
- gradle-tests
- link-checker
- python-e2e-tests
- python-lint
runs-on: ubuntu-latest
steps:
- run: |
echo '## :heavy_check_mark: All continous integration checks pass' >> $GITHUB_STEP_SUMMARY

0 comments on commit f91e12d

Please sign in to comment.