Skip to content

Commit 9c268bc

Browse files
committed
Hardcoded release manager in changelog generation
1 parent 519e571 commit 9c268bc

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

scripts/create_changelog.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
BASE_URL = r"https://api.github.com/repos/sagemath/sage"
2727
HEADERS = {'Authorization': f'token {GITHUB_PAT}', }
2828
AUTOMATED_BOTS = ['dependabot[bot]', 'github-actions', 'renovate[bot]']
29+
RELEASE_MANAGER = "Volker Braun"
2930

3031
# Maps the github username to contributor name
3132
git_to_name = {}
@@ -393,6 +394,7 @@ def save_to_file(filename, ver, date_of_release):
393394
max_name_len = max([len(c) for c in all_contribs])
394395
for c in all_contribs:
395396
file.write(f" - {c}{' '*(max_name_len - len(c)) + ' [First contribution]' if c in first_contribs else ''}\n")
397+
file.write(f"\nRelease manager: {RELEASE_MANAGER}\n")
396398
pr_count = sum([len(all_info[tag]) for tag in all_info])
397399
file.write(f"\nWe merged {pr_count} pull requests in this release.")
398400
sorted_tags = sorted(all_info.keys(), key=sort_tags)

0 commit comments

Comments
 (0)