Skip to content

docs: fix pricing claims and add risk disclosure #3

docs: fix pricing claims and add risk disclosure

docs: fix pricing claims and add risk disclosure #3

Workflow file for this run

# Security scanning workflow for cc-copilot-bridge
# Runs gitleaks to detect secrets/credentials on every push and PR
name: Security Scan
on:
push:
branches: [main, develop]
pull_request:
branches: [main]
# Allow manual trigger
workflow_dispatch:
permissions:
contents: read
security-events: write
jobs:
gitleaks:
name: Gitleaks Secret Detection
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0 # Full history for comprehensive scan
- name: Run Gitleaks
uses: gitleaks/gitleaks-action@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITLEAKS_CONFIG: .gitleaks.toml
GITLEAKS_ENABLE_COMMENTS: true
- name: Upload SARIF report
if: always()
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: results.sarif
continue-on-error: true # Don't fail if no SARIF generated