[Bug]: 用VLLM-ASCEND官方文档的流程部署Qwen3-VL-30B-A3B-Instruct跑不起来 #1618
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: "Issue Create/Update Labeler" | |
| on: | |
| issues: | |
| types: [opened, edited] | |
| permissions: | |
| issues: write | |
| contents: read | |
| jobs: | |
| triage: | |
| runs-on: ubuntu-latest | |
| if: | | |
| startsWith(github.event.issue.title, '[Bug]:') || | |
| startsWith(github.event.issue.title, '[Installation]:') || | |
| startsWith(github.event.issue.title, '[Usage]:') || | |
| startsWith(github.event.issue.title, '[Doc]:') || | |
| startsWith(github.event.issue.title, '[Misc]:') | |
| steps: | |
| - uses: github/issue-labeler@v3.4 | |
| with: | |
| configuration-path: .github/issue-labeler.yml | |
| enable-versioned-regex: 0 | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| include-title: 1 | |
| include-body: 0 |