[Examples] Add Gemma 4 E4B NVFP4A16 quantization example #2199
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 Ready Label | |
| on: | |
| pull_request_target: | |
| branches: [ main , 'release/*' ] | |
| types: | |
| - labeled | |
| - unlabeled | |
| - opened | |
| - reopened | |
| - synchronize | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| ready-label-check: | |
| runs-on: gcp-k8s-vllm-util | |
| steps: | |
| - name: Fail if ready label has not been applied to PR | |
| if: "!contains(github.event.pull_request.labels.*.name, 'ready')" | |
| run: | | |
| echo "::error::The PR is not labeled as 'ready'" | |
| exit 1 | |
| - name: Succeed if ready label has been applied to PR | |
| if: contains(github.event.pull_request.labels.*.name, 'ready') | |
| run: | | |
| echo "::info::The PR is labeled as 'ready'" | |
| exit 0 |