(repo_name, title, pulls)
| 24 | import subprocess |
| 25 | |
| 26 | def print_pulls(repo_name, title, pulls): |
| 27 | if len(pulls) > 0: |
| 28 | print("**{}:**".format(title)) |
| 29 | print() |
| 30 | for (pull, commit) in pulls: |
| 31 | url = "https://github.com/{}/pull/{}".format(repo_name, pull.number) |
| 32 | print("- {} [#{}]({}) ({})".format(pull.title, pull.number, url, commit.author.login)) |
| 33 | print() |
| 34 | |
| 35 | |
| 36 | def generate_changelog(repo, repo_name, tag1, tag2, version): |
no test coverage detected
searching dependent graphs…