Skip to content

Instantly share code, notes, and snippets.

View mannysz's full-sized avatar

Emanuel de Souza mannysz

View GitHub Profile
@bhardin
bhardin / create_release_notes.py
Created May 21, 2018 16:01
Create nice looking PR notes from a milestone
from github import Github
import os
import sys
release = str(sys.argv[1])
# or using an access token
GITHUB_ACCESS_TOKEN = os.environ['GITHUB_ACCESS_TOKEN']
g = Github(GITHUB_ACCESS_TOKEN)
FEATURES = 'Feature'