Browse Source

[CI] Require E2E to passed before merging (#8891)

3.0.0/version-upgrade
kezhenxu94 3 years ago committed by GitHub
parent
commit
14bb722f6f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      .github/workflows/e2e.yml

8
.github/workflows/e2e.yml

@ -143,6 +143,12 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
timeout-minutes: 30 timeout-minutes: 30
needs: [ e2e ] needs: [ e2e ]
if: always()
steps: steps:
- name: Status - name: Status
run: echo "Passed!" run: |
if [[ ${{ needs.e2e.result }} == 'success' ]]; then
echo "Passed!"
else
exit -1
fi

Loading…
Cancel
Save