diff mbox series

[v12,1/4] contrib/: Add support for Cc: and Link: tags

Message ID d7fca49888a51d45b14ebc6f777210bdeb87addd.1725115144.git.alx@kernel.org
State New
Headers show
Series c: Add __nelementsof__ operator | expand

Commit Message

Alejandro Colomar Aug. 31, 2024, 2:56 p.m. UTC
contrib/ChangeLog:

	* gcc-changelog/git_commit.py (GitCommit):
	Add support for 'Cc: ' and 'Link: ' tags.

Cc: Jason Merrill <jason@redhat.com>
Signed-off-by: Alejandro Colomar <alx@kernel.org>
---
 contrib/gcc-changelog/git_commit.py | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/contrib/gcc-changelog/git_commit.py b/contrib/gcc-changelog/git_commit.py
index 87ecb9e1a17..64fb986b74c 100755
--- a/contrib/gcc-changelog/git_commit.py
+++ b/contrib/gcc-changelog/git_commit.py
@@ -182,7 +182,8 @@  CO_AUTHORED_BY_PREFIX = 'co-authored-by: '
 
 REVIEW_PREFIXES = ('reviewed-by: ', 'reviewed-on: ', 'signed-off-by: ',
                    'acked-by: ', 'tested-by: ', 'reported-by: ',
-                   'suggested-by: ')
+                   'suggested-by: ', 'cc: ')
+LINK_PREFIXES = ('link: ')
 DATE_FORMAT = '%Y-%m-%d'
 
 
@@ -524,6 +525,8 @@  class GitCommit:
                     continue
                 elif lowered_line.startswith(REVIEW_PREFIXES):
                     continue
+                elif lowered_line.startswith(LINK_PREFIXES):
+                    continue
                 else:
                     m = cherry_pick_regex.search(line)
                     if m: