From b54911a52e23f724218553b42448769ed6ed76c0 Mon Sep 17 00:00:00 2001 From: PabloMK7 Date: Thu, 22 Jan 2026 13:47:25 +0100 Subject: [PATCH] github: Ignore punctuation marks in PR verification --- .github/workflows/first_time_contributor_reopen.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/first_time_contributor_reopen.yml b/.github/workflows/first_time_contributor_reopen.yml index b42400902..094ca3cca 100644 --- a/.github/workflows/first_time_contributor_reopen.yml +++ b/.github/workflows/first_time_contributor_reopen.yml @@ -39,7 +39,7 @@ jobs: const displayName = (user.name || '').toLowerCase(); // Make comment body lowercase and split words - const body = comment.body.toLowerCase().trim().split(/\s+/); + const body = comment.body.toLowerCase().trim().replace(/[^\p{L}\p{N}_-\s]/gu, '').split(/\s+/); // Check that the user verified themselves by writing a song about the NES and the SNES. const verified =