Skip to content

Commit

Permalink
backport of commit d766848 (#20380)
Browse files Browse the repository at this point in the history
Co-authored-by: Jaymala <jaymala@hashicorp.com>
  • Loading branch information
hc-github-team-secure-vault-core and Jaymala committed Apr 26, 2023
1 parent d492ca7 commit da943b0
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,12 @@ jobs:
secrets: inherit

completed-successfully:
# We force a failure if any of the dependent jobs fail,
# this is a workaround for the issue reported https://github.com/actions/runner/issues/2566
if: |
always() && (cancelled() ||
contains(needs.*.result, 'cancelled') ||
contains(needs.*.result, 'failure'))
runs-on: ubuntu-latest
needs:
- build-other
Expand All @@ -221,4 +227,6 @@ jobs:
- test
- test-docker-k8s
steps:
- run: echo "All required build and test workflows have succeeded!"
- run: |
echo "Some of the required build and test workflows have failed!"
exit 1

0 comments on commit da943b0

Please sign in to comment.