QVAC-21318 feat: default KV-cache to q8_0 on GPU backends except OpenCL #2329
Workflow file for this run
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] | |
| 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.action == 'opened' | |
| ) || ( | |
| github.event_name == 'pull_request_target' && | |
| (github.event.action == 'labeled' || github.event.action == 'synchronize') && | |
| contains(github.event.pull_request.labels.*.name, 'verified') | |
| ) | |
| 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' |