QVAC-23075 feat: add VisionPsy Nano to the VLM benchmark #9287
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: Check Approvals | |
| on: | |
| issue_comment: | |
| types: [created] | |
| pull_request_target: | |
| types: [opened, labeled, synchronize, ready_for_review] | |
| branches: [main, master, release-*] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| issues: write | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.event.issue.number || github.ref }} | |
| cancel-in-progress: false | |
| jobs: | |
| check-approvals: | |
| name: Check Approvals | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| continue-on-error: true | |
| if: >- | |
| ( | |
| github.event_name == 'issue_comment' && | |
| contains(github.event.comment.body, 'review') && | |
| github.event.issue.pull_request != null | |
| ) || ( | |
| github.event_name == 'pull_request_target' && | |
| !github.event.pull_request.draft | |
| ) | |
| steps: | |
| - name: Install @qvac/ci | |
| run: npm install -g @qvac/ci@0.2.0 | |
| - name: Check Approvals | |
| continue-on-error: true | |
| env: | |
| GITHUB_TOKEN: ${{ github.token }} | |
| GITHUB_APP_ID: ${{ secrets.APP_ID }} | |
| GITHUB_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }} | |
| run: | | |
| qvac-ci pending-approvals \ | |
| --pr-number "${{ github.event.pull_request.number || github.event.issue.number }}" \ | |
| --maintainers-team 'qvac-internal-mgmt' \ | |
| --team-leads-team 'qvac-internal-merge' \ | |
| --min-approvals '2' |