From eb5bde86d65163a67d13d0f92a98062aa23581ea Mon Sep 17 00:00:00 2001 From: Jose Date: Sat, 14 Feb 2026 10:14:10 +0100 Subject: [PATCH] =?UTF-8?q?chore=20=F0=9F=93=A6:=20Update=20redaction=20se?= =?UTF-8?q?tting=20in=20PR=20check=20workflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit updates the redaction setting from `--redact=10` to `--redact=false` in the `.gitea/workflows/pr-check.yaml` file. This change ensures that no redaction occurs during the PR check process, maintaining full visibility and integrity of the data being checked. --- .gitea/workflows/pr-check.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/pr-check.yaml b/.gitea/workflows/pr-check.yaml index 7b3c4ed..afd5ce5 100644 --- a/.gitea/workflows/pr-check.yaml +++ b/.gitea/workflows/pr-check.yaml @@ -27,7 +27,7 @@ jobs: run: | gitleaks dir . \ --config .gitleaks.toml \ - --redact=10 \ + --redact=false \ --verbose \ --exit-code 1