feat(vllm-0.24): add Qwen3.5 text-only runtime compatibility #1119
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: "Pull Request Labeler" | |
| on: | |
| pull_request_target: | |
| types: [opened, synchronize, reopened] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| label: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout (attempt 1) | |
| id: checkout1 | |
| uses: actions/checkout@v4 | |
| continue-on-error: true | |
| - name: Checkout (attempt 2) | |
| id: checkout2 | |
| if: steps.checkout1.outcome == 'failure' | |
| uses: actions/checkout@v4 | |
| continue-on-error: true | |
| - name: Checkout (attempt 3) | |
| if: steps.checkout2.outcome == 'failure' | |
| uses: actions/checkout@v4 | |
| - name: Apply labels | |
| uses: actions/labeler@v5 | |
| continue-on-error: true # Don't fail if config not yet on main branch | |
| with: | |
| repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
| sync-labels: true |