From fd7a5a9e5b41508dee388b87b9c55760333f8abe Mon Sep 17 00:00:00 2001 From: Mara Nikola Kiefer Date: Thu, 12 Feb 2026 16:22:09 +0100 Subject: [PATCH] chore: mention maintainer in bot detection report --- .github/workflows/bot-detection.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/bot-detection.yml b/.github/workflows/bot-detection.yml index a9fef3cc032..4107668c066 100644 --- a/.github/workflows/bot-detection.yml +++ b/.github/workflows/bot-detection.yml @@ -336,7 +336,8 @@ jobs: // Build report const today = new Date().toISOString().split('T')[0]; - let body = `Recently-created accounts often indicate bots, spam accounts, or coordinated attacks.\n\n`; + // Mention a maintainer for timely triage. + let body = `@pelikhan\n\nRecently-created accounts often indicate bots, spam accounts, or coordinated attacks.\n\n`; const sorted = Array.from(highRiskAccounts.entries()).sort((a, b) => a[1].daysOld - b[1].daysOld);