From: Nathan Cutler Date: Wed, 19 Jul 2017 08:35:04 +0000 (+0200) Subject: tools: ceph-release-notes: match Reviewed-by more liberally X-Git-Tag: v12.1.2~230^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F16411%2Fhead;p=ceph.git tools: ceph-release-notes: match Reviewed-by more liberally Signed-off-by: Nathan Cutler --- diff --git a/src/script/ceph-release-notes b/src/script/ceph-release-notes index 6faac1cf72500..2148ed3f1ccdf 100755 --- a/src/script/ceph-release-notes +++ b/src/script/ceph-release-notes @@ -36,6 +36,7 @@ from git import Repo fixes_re = re.compile(r"Fixes\:? #(\d+)") +reviewed_by_re = re.compile(r"Rev(.*)By", re.IGNORECASE) # labels is the list of relevant labels defined for github.com/ceph/ceph labels = ['bluestore', 'build/ops', 'cephfs', 'common', 'core', 'mgr', 'mon', 'performance', 'pybind', 'rdma', 'rgw', 'rbd', 'tests', @@ -117,7 +118,7 @@ def _title_message(commit, pr, strict): return (title, None) lines = [] for line in message_lines[1:]: - if 'Reviewed-by' in line: + if reviewed_by_re.match(line): continue line = line.strip() if line: