fix(mcp): treat empty limit/offset query params as absent #2978
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: Pipelock Advisory Scan | |
| on: | |
| pull_request: | |
| paths-ignore: | |
| - "content/**" | |
| - "README.md" | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| # Cancel a superseded scan when a new commit is pushed to the same PR — otherwise rapid re-pushes | |
| # during iteration leave stale full-repo scans running and burning runner minutes. (#cancel-stale) | |
| concurrency: | |
| group: pipelock-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| pipelock-advisory-scan: | |
| name: pipelock-advisory-scan | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd | |
| with: | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| - name: Run Pipelock advisory scan | |
| # Pipelock v2 tag dereferenced to a full commit SHA for selected-actions policy. | |
| uses: luckyPipewrench/pipelock@dcd25d8ea407f087fa9f2d4a0f8bddea5c997f07 | |
| continue-on-error: true | |
| with: | |
| scan-diff: "true" | |
| fail-on-findings: "false" |