Created
June 11, 2014 02:16
-
-
Save etoews/4e7295ecfd33ac14d92e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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