fix(docs): correct false OTel tracing claim in mvp-roadmap.md #141
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: Security Secrets (Gitleaks) | |
| on: | |
| pull_request: | |
| branches: [main, develop] | |
| types: [opened, reopened, synchronize, ready_for_review] | |
| push: | |
| branches: [main, develop] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| env: | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true" | |
| jobs: | |
| gitleaks-scan: | |
| name: Gitleaks (commit range) | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| with: | |
| fetch-depth: 0 | |
| - name: Detect secrets with Gitleaks | |
| uses: docker://ghcr.io/gitleaks/gitleaks:v8.21.2 | |
| with: | |
| args: detect --source=/github/workspace --verbose --no-banner |