From e96e629fab3936c894214bef44155cb1bc671e4c Mon Sep 17 00:00:00 2001 From: John Estabrook Date: Thu, 1 Dec 2022 08:35:10 -0600 Subject: ci: T4748: add hyphen and underscore for subject name --- scripts/check-pr-title-and-commit-messages.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/check-pr-title-and-commit-messages.py b/scripts/check-pr-title-and-commit-messages.py index 3317745d6..9801b7456 100755 --- a/scripts/check-pr-title-and-commit-messages.py +++ b/scripts/check-pr-title-and-commit-messages.py @@ -7,7 +7,7 @@ import requests from pprint import pprint # Use the same regex for PR title and commit messages for now -title_regex = r'^(([a-zA-Z.]+:\s)?)T\d+:\s+[^\s]+.*' +title_regex = r'^(([a-zA-Z\-_.]+:\s)?)T\d+:\s+[^\s]+.*' commit_regex = title_regex def check_pr_title(title): -- cgit v1.2.3