release-text

This commit is contained in:
Jack Robison 2019-02-06 09:00:59 -05:00
parent e06c903731
commit be90ec51e4
No known key found for this signature in database
GPG key ID: DF25C68FE0239BB2

View file

@ -158,8 +158,8 @@ def release(args):
type_label = get_label(pr, "type")
for incompat in get_backwards_incompatible(pr.body):
incompats.append(f' * [{area_name}] {incompat.strip()} ({pr.html_url})')
for incompat in get_release_text(pr.body):
release_texts.append(f' * [{area_name}] {incompat.strip()} ({pr.html_url})')
for release_text in get_release_text(pr.body):
release_texts.append(f'{release_text.strip()} ({pr.html_url})')
if not (args.action == '*-rc' and type_label == 'fixup'):
area.append(f' * [{type_label}] {pr.title} ({pr.html_url}) by {pr.user["login"]}')