docs 📝: Add new rule to detect Sidekiq secret in README.md
All checks were successful
ansible-lint / Ansible Lint (push) Successful in 13s
Gitleaks Scan / gitleaks (push) Successful in 4s
Markdown Lint / markdown-lint (push) Successful in 5s
ai-reviews / Review PR (pull_request) Successful in 44s
PR check / Gitleaks (pull_request) Successful in 5s
PR check / lint tests (pull_request) Successful in 14s
PR check / handle_failures (pull_request) Has been skipped
PR check / handle_success (pull_request) Successful in 1s

This commit adds a new section to the README.md file, detailing how to detect and secure Sidekiq secrets within an application.
This commit is contained in:
2026-02-14 10:32:52 +01:00
parent 8bd90b8823
commit 64aec59295

View File

@@ -38,3 +38,10 @@ description = "Ignore placeholder secrets in README.md"
regex = "(?i)(api[_-]?key|secret|token)=\\S+"
filepath = "README.md"
entropy = 10.0 # very high threshold, placeholders won't trigger
[[rules]]
id = "sidekiq-secret"
description = "Sidekiq Secret in README.md"
regex = "export BUNDLE_ENTERPRISE__CONTRIBSYS__COM=\\S+"
filepath = "README.md"
entropy = 5.5