Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 13 additions & 4 deletions scripts/publish_gh_release_notes.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,10 @@
import pypandoc


def publish_github_release(token, tag_name, body):
def publish_github_release(slug, token, tag_name, body):
github = github3.login(token=token)
repo = github.repository("pytest-dev", "pytest")
owner, repo = slug.split("/")
repo = github.repository(owner, repo)
return repo.create_release(tag_name=tag_name, body=body)


Expand Down Expand Up @@ -71,14 +72,22 @@ def main(argv):
print("GH_RELEASE_NOTES_TOKEN not set", file=sys.stderr)
return 1

slug = os.environ.get("TRAVIS_REPO_SLUG")
if not slug:
print("TRAVIS_REPO_SLUG not set", file=sys.stderr)
return 1

rst_body = parse_changelog(tag_name)
md_body = convert_rst_to_md(rst_body)
if not publish_github_release(token, tag_name, md_body):
if not publish_github_release(slug, token, tag_name, md_body):
print("Could not publish release notes:", file=sys.stderr)
print(md_body, file=sys.stderr)
return 5

print(f"Release notes for {tag_name} published successfully")
print()
print(f"Release notes for {tag_name} published successfully:")
print(f"https://github.com/{slug}/releases/tag/{tag_name}")
print()
return 0


Expand Down