Skip to content

Commit

Permalink
fix gate condition
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Goodman <[email protected]>
  • Loading branch information
wagoodman committed Oct 11, 2023
1 parent ada8a7c commit 0d7c3d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nightly-quality-gate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ jobs:
# based on https://docs.github.com/en/actions/learn-github-actions/contexts#steps-context
# the valid result values are: success, failure, cancelled, skipped
- run: |
echo "Validations Status: ${{ needs.run-provider-validation.result }}"
if [ "${{ needs.run-provider-validation.result }}" != "success" ]; then
echo "Validations Status: ${{ steps.validate-provider.result }}"
if [ "${{ steps.validate-provider.result }}" != "success" ]; then
echo "🔴 Quality gate FAILED! 😭"
exit 1
fi
Expand Down

0 comments on commit 0d7c3d7

Please sign in to comment.