[Bugfix] Fix Llama3JsonToolParser to support deeply nested JSON parameters #24447
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: BC Lint | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| - labeled | |
| - unlabeled | |
| jobs: | |
| bc_lint: | |
| if: github.repository_owner == 'vllm-project' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Run BC Lint Action | |
| uses: pytorch/test-infra/.github/actions/bc-lint@main | |
| with: | |
| repo: ${{ github.event.pull_request.head.repo.full_name }} | |
| base_sha: ${{ github.event.pull_request.base.sha }} | |
| head_sha: ${{ github.event.pull_request.head.sha }} | |
| suppression: ${{ contains(github.event.pull_request.labels.*.name, 'suppress-bc-linter') }} | |
| docs_link: 'https://github.com/pytorch/test-infra/wiki/BC-Linter' | |
| config_dir: .github | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} | |
| cancel-in-progress: true |