[Bugfix][DeepSeek V4] Forward input IDs across pipeline stages #7054
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: PR title | |
| on: | |
| pull_request: | |
| types: [labeled, edited, reopened, ready_for_review, synchronize] | |
| concurrency: | |
| group: pr-title-${{ github.event.pull_request.number }} | |
| cancel-in-progress: true | |
| permissions: {} | |
| jobs: | |
| check-format: | |
| name: Check format | |
| # Triggered when: | |
| # - The `ready` label is added. | |
| # - A ready PR's title is edited. | |
| # - A ready PR is reopened. | |
| # - A draft PR with the `ready` label is marked ready for review. | |
| # - New commits are pushed to a ready PR (so its latest commit has a title check status). | |
| if: >- | |
| github.repository_owner == 'vllm-project' && | |
| github.event.pull_request.draft == false && | |
| contains(github.event.pull_request.labels.*.name, 'ready') && | |
| (github.event.action != 'labeled' || github.event.label.name == 'ready') && | |
| (github.event.action != 'edited' || github.event.changes.title != null) | |
| runs-on: ubuntu-slim | |
| steps: | |
| - name: Validate title | |
| env: | |
| PR_TITLE: ${{ github.event.pull_request.title }} | |
| run: | | |
| pattern='^(\[[^][]+\])+ +[^[:space:]].*$' | |
| if [[ "$PR_TITLE" =~ $pattern ]]; then | |
| exit 0 | |
| fi | |
| echo "::error::PR title must start with one or more [Tag] prefixes, followed by a space and a description." | |
| exit 1 |