chore 📦: Increase redaction length and exclude README.md in gitleaks check
Some checks failed
ansible-lint / Ansible Lint (push) Successful in 12s
Gitleaks Scan / gitleaks (push) Successful in 5s
Markdown Lint / markdown-lint (push) Successful in 5s
ai-reviews / Review PR (pull_request) Successful in 26s
PR check / Gitleaks (pull_request) Failing after 4s
PR check / lint tests (pull_request) Successful in 13s
PR check / handle_failures (pull_request) Successful in 1s
PR check / handle_success (pull_request) Has been skipped

This commit increases the maximum redaction length for sensitive data in our codebase and updates the gitleaks configuration to exclude README.md files from scans. This ensures that we maintain a higher standard of security while avoiding false positives.
This commit is contained in:
2026-02-14 10:26:16 +01:00
parent 276c438ff4
commit 2d9aa39339

View File

@@ -27,9 +27,10 @@ jobs:
run: |
gitleaks dir . \
--config .gitleaks.toml \
--redact=0 \
--redact=50 \
--verbose \
--exit-code 1
--exclude-files "README.md"
lint_test:
name: lint tests