diff options
author | John Estabrook <jestabro@vyos.io> | 2022-10-25 14:55:49 -0500 |
---|---|---|
committer | John Estabrook <jestabro@vyos.io> | 2022-10-25 14:55:49 -0500 |
commit | c0594071c6c1062cc0069377b6666de89a172d0a (patch) | |
tree | c35ff49c309d31533db23c08f5d256d5dce94c17 /scripts | |
parent | 1265b15ffc8baa05177c707f30205d70528c5dc6 (diff) | |
download | vyos-1x-c0594071c6c1062cc0069377b6666de89a172d0a.tar.gz vyos-1x-c0594071c6c1062cc0069377b6666de89a172d0a.zip |
ci: T4748: add dot to regex char class to allow 'vyos.util: Txxx: ...'
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/check-pr-title-and-commit-messages.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): |