Past Status - PD Disaggregation E2E (Intel XPU) #42
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: Past Status - PD Disaggregation E2E (Intel XPU) | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| workflow_name_query: | |
| description: 'Name of the workflow to be queried' | |
| required: false | |
| type: 'string' | |
| default: 'nightly-e2e-pd-disaggregation-intel-acc-xpu-vllm-x.yaml' | |
| time_window_query: | |
| description: 'How many days in the past to query' | |
| required: true | |
| type: 'string' | |
| default: '5' | |
| branch_query: | |
| description: 'Branch to be queried' | |
| required: false | |
| type: string | |
| default: 'main' | |
| # push: | |
| # branches: | |
| # - main | |
| schedule: | |
| - cron: '0 10 * * *' # 10:00 UTC daily | |
| jobs: | |
| check_for_success: | |
| uses: llm-d/llm-d-infra/.github/workflows/reusable-query-success-past-runs.yaml@main | |
| with: | |
| workflow_name_query: ${{ inputs.workflow_name_query || 'nightly-e2e-pd-disaggregation-intel-acc-xpu-vllm-x.yaml' }} | |
| time_window_query: ${{ inputs.time_window_query || '5' }} | |
| branch_query: ${{ inputs.branch_query || 'main' }} | |
| secrets: inherit |