mirror of
https://github.com/abhigyanpatwari/GitNexus.git
synced 2026-08-28 05:25:25 +00:00
* fix(ci): stabilize gitleaks after #2024 and clear history false positive Fetch PR base/head SHAs before gitleaks-action so fork PRs do not fail with ambiguous revision ranges. Add .gitleaks.toml allowlist for fake keys in http-embedder tests, rename the redaction probe key, and point the README CI badge at abhigyanpatwari/GitNexus. Co-authored-by: Cursor <cursoragent@cursor.com> * fix(ci): restore gitleaks default rules and narrow allowlist Add [extend] useDefault = true so default secret rules run again. Replace file-level allowlist with regexes for known fake embedding API keys. Route PR SHAs through env vars in the gitleaks fetch step. Co-authored-by: Cursor <cursoragent@cursor.com> * Update README.md * Update README.md * Update README.md --------- Co-authored-by: Cursor <cursoragent@cursor.com>
12 lines
288 B
TOML
12 lines
288 B
TOML
title = "GitNexus"
|
|
|
|
[extend]
|
|
useDefault = true
|
|
|
|
# Fake embedding API keys in unit tests (current probe + historical placeholder).
|
|
[allowlist]
|
|
description = "fake embedding API keys in http-embedder unit tests"
|
|
regexes = [
|
|
'''secret-key-12345''',
|
|
'''test-api-key-redaction-check''',
|
|
]
|