Skip to content

Instantly share code, notes, and snippets.

@etoews
Created June 11, 2014 02:16
Show Gist options
  • Save etoews/4e7295ecfd33ac14d92e to your computer and use it in GitHub Desktop.
Save etoews/4e7295ecfd33ac14d92e to your computer and use it in GitHub Desktop.
# Comment on a pull request (issue)
import os
from github import Github
github = Github(os.environ['GITHUB_USERNAME'], os.environ['GITHUB_PASSWORD'])
repo = github.get_user(os.environ['GITHUB_ORG']).get_repo(os.environ['GITHUB_REPO'])
issue = repo.get_issue(int(os.environ['GITHUB_PR_NUMBER']))
issue.create_comment(os.environ['GITHUB_PR_MESSAGE'])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment