From c0594071c6c1062cc0069377b6666de89a172d0a Mon Sep 17 00:00:00 2001 From: John Estabrook Date: Tue, 25 Oct 2022 14:55:49 -0500 Subject: ci: T4748: add dot to regex char class to allow 'vyos.util: Txxx: ...' --- 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 c30c3ef1f..3317745d6 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