Skip to content

Commit

Permalink
add mergeable check (#16439)
Browse files Browse the repository at this point in the history
  • Loading branch information
SbloodyS committed Aug 14, 2024
1 parent f9db865 commit 9760dec
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
1 change: 1 addition & 0 deletions .asf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ github:
- E2E
- Docs
- Frontend Build
- "E2E-K8S-Result"
- "Mergeable: milestone-label-check"
- "Title Validator"
required_pull_request_reviews:
Expand Down
17 changes: 17 additions & 0 deletions .github/workflows/e2e-k8s.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,3 +147,20 @@ jobs:
done
done
done
result:
name: E2E-K8S-Result
runs-on: ubuntu-latest
timeout-minutes: 30
needs: [ e2e-k8s, paths-filter ]
if: always()
steps:
- name: Status
run: |
if [[ ${{ needs.paths-filter.outputs.not-ignore }} == 'false' && ${{ github.event_name }} == 'pull_request' ]]; then
echo "Skip E2E-K8S!"
exit 0
fi
if [[ ${{ needs.e2e-k8s.result }} != 'success' ]]; then
echo "E2E-K8S Failed!"
exit -1
fi

0 comments on commit 9760dec

Please sign in to comment.