fix: remove the default mcp path for streamable http #186
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: Gitleaks Scan | |
on: | |
pull_request | |
permissions: | |
contents: read | |
pull-requests: read | |
jobs: | |
gitleaks: | |
name: Run Gitleaks | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout PR code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
ref: ${{ github.event.pull_request.head.ref }} | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
token: ${{ secrets.GHA_PAT }} | |
- name: Run Gitleaks | |
uses: gitleaks/gitleaks-action@v2 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GHA_PAT }} | |
GITLEAKS_LICENSE: ${{ secrets.GITLEAKS_LICENSE }} | |
GITLEAKS_ENABLE_UPLOAD_ARTIFACT: "false" | |
GITLEAKS_VERSION: 8.26.0 |