Skip to content

Commit

Permalink
Use authentication; see if that helps
Browse files Browse the repository at this point in the history
  • Loading branch information
dwhswenson committed Oct 31, 2017
1 parent 7fc2b8a commit cafb2c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autorelease/github_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def find_relevant_pr(self):

def get_pr_data(self, pr_number):
pr_url = self.repo_api_url + "issues/" + str(pr_number)
pr_data = requests.get(pr_url).json()
pr_data = requests.get(pr_url, auth=self.github_user.auth).json()
return pr_data

def generate_post_data(self, draft=False, prerelease=False):
Expand Down

0 comments on commit cafb2c5

Please sign in to comment.