Update Serving API - from backend PR #5950 #248
This file contains hidden or 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 approve PRs | |
| on: | |
| pull_request: | |
| branches: [ main, main-convert ] | |
| types: [opened] | |
| jobs: | |
| auto-approve: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write | |
| steps: | |
| - name: Run auto-approve steps | |
| if: github.event.pull_request.user.login == 'release-please[bot]' | |
| id: autoapprove | |
| run: echo "run=true" >> $GITHUB_OUTPUT | |
| - name: Auto approve Hotfix or revert PR | |
| if: github.event.pull_request.user.login == 'release-please[bot]' | |
| uses: hmarr/auto-approve-action@v4 | |
| with: | |
| review-message: 🚨⚠️ Automated PR approved ⚠️🚨 |