(commit)
| 452 | |
| 453 | def to_markdown(commit_list: CommitList, category): |
| 454 | def cleanup_title(commit): |
| 455 | match = re.match(r"(.*) \(#\d+\)", commit.title) |
| 456 | if match is None: |
| 457 | return commit.title |
| 458 | return match.group(1) |
| 459 | |
| 460 | merge_mapping = defaultdict(list) |
| 461 | for commit in commit_list.commits: |
no test coverage detected
searching dependent graphs…