We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/avivsinai/landfuse-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
name: Gitleaks
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
permissions:
contents: read
security-events: write
actions: read
jobs:
gitleaks:
name: Scan for secrets
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Run Gitleaks
id: gitleaks
uses: DariuszPorowski/github-action-gitleaks@v2
with:
config: .gitleaks.toml
report_format: sarif
fail: false
log_level: info
- name: Upload SARIF to GitHub Code Scanning
if: steps.gitleaks.outputs.exitcode == 1
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: ${{ steps.gitleaks.outputs.report }}
- name: Fail if secrets found
if: steps.gitleaks.outputs.exitcode == 1
run: |
echo "::error::Gitleaks detected secrets in the codebase"
exit 1