From 2d9aa39339941335f9dab11d63d132ce64f16366 Mon Sep 17 00:00:00 2001 From: Jose Date: Sat, 14 Feb 2026 10:26:16 +0100 Subject: [PATCH] =?UTF-8?q?chore=20=F0=9F=93=A6:=20Increase=20redaction=20?= =?UTF-8?q?length=20and=20exclude=20README.md=20in=20gitleaks=20check?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- .gitea/workflows/pr-check.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/pr-check.yaml b/.gitea/workflows/pr-check.yaml index 4678800..9d37c4d 100644 --- a/.gitea/workflows/pr-check.yaml +++ b/.gitea/workflows/pr-check.yaml @@ -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