fix: return ITSM approval URL for MCP permission records #4399
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: dashboard ci | |
| on: | |
| push: | |
| branches: [ master, pre_*, pre/*, ft_*, release/* ] | |
| paths: ['src/dashboard/**'] | |
| pull_request: | |
| branches: [ master, pre_*, pre/*, ft_*, release/* ] | |
| paths: ['src/dashboard/**'] | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.14.6"] | |
| os: [ubuntu-latest] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install a specific version of uv | |
| uses: astral-sh/setup-uv@v6 | |
| with: | |
| version: "0.11.26" | |
| enable-cache: true | |
| cache-dependency-glob: "src/dashboard/uv.lock" | |
| - name: Install the project | |
| run: cd src/dashboard && export UV_PROJECT_ENVIRONMENT="${pythonLocation}" && uv sync --locked --all-extras --dev | |
| - name: Lint | |
| run: make edition-ee && make lint-check | |
| working-directory: src/dashboard | |
| - name: OpenAPI consistency check | |
| run: make check-openapi | |
| working-directory: src/dashboard | |
| - name: Aqua Security Trivy | |
| uses: aquasecurity/trivy-action@v0.35.0 | |
| continue-on-error: true | |
| with: | |
| scan-type: 'fs' | |
| scan-ref: 'src/dashboard' | |
| - name: Test | |
| run: make edition-ee && make test | |
| working-directory: src/dashboard |