[release-18.0] Code Freeze for v18.0.0
#32
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Auto Approval of Bot Pull Requests | |
on: | |
pull_request: | |
types: [opened, reopened] | |
jobs: | |
auto_approve: | |
name: Approve Pull Request | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Approve Pull Request | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
if [[ "${{github.event.pull_request.user.login}}" == "bot-vitess[bot]" ]] && [[ "${{github.event.pull_request.draft}}" == "false" ]]; then | |
gh pr review ${{ github.event.pull_request.number }} --approve | |
fi |