feat(playground-ui): add processor combobox for breadcrumb navigation #24382
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: Contributor actions | |
| on: | |
| pull_request_target: | |
| types: [opened, synchronize, reopened] | |
| branches: [main, 0.x] | |
| jobs: | |
| contributor-actions: | |
| name: Setup actions with secrets | |
| runs-on: ubuntu-latest | |
| permissions: | |
| statuses: write | |
| strategy: | |
| matrix: | |
| include: | |
| - description: 'Core Package Tests' | |
| - description: 'MCP Package Tests' | |
| - description: 'E2E Tests' | |
| - description: 'Combined store Tests (vector+storage)' | |
| - description: 'Memory Tests' | |
| - description: 'RAG Tests' | |
| - description: 'Tool Builder Tests' | |
| - description: 'Auth Package Tests' | |
| - description: 'Deployer Package Tests' | |
| - description: 'Server Package Tests' | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v5 | |
| - name: Setup custom action | |
| uses: ./.github/workflows/shared-actions/set-pr-status | |
| with: | |
| status: 'pending' | |
| context: ${{ matrix.description }} | |
| sha: ${{ github.event.pull_request.head.sha }} | |
| github_token: ${{ secrets.GITHUB_TOKEN }} |