MCPcopy Create free account
hub / github.com/apache/datafusion / print_pulls

Function print_pulls

dev/release/generate-changelog.py:26–33  ·  view source on GitHub ↗
(repo_name, title, pulls)

Source from the content-addressed store, hash-verified

24import subprocess
25
26def 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
36def generate_changelog(repo, repo_name, tag1, tag2, version):

Callers 1

generate_changelogFunction · 0.85

Calls 1

formatMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…