1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00

Merge branch 'master' into dupespoc2

This commit is contained in:
Chris Cummer 2019-05-01 17:16:11 -07:00 committed by GitHub
commit 6ab7eb4022
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 0 deletions

View File

@ -2,6 +2,10 @@
## Unreleased
### ⚡️ Added
* Increased the pagination limit for GitHub to 100, by [@Seanstoppable](https://github.com/Seanstoppable)
## 0.8.0
### ⚡️ Added

View File

@ -160,6 +160,7 @@ func (repo *GithubRepo) loadPullRequests() ([]*ghb.PullRequest, error) {
}
opts := &ghb.PullRequestListOptions{}
opts.ListOptions.PerPage = 100
prs, _, err := github.PullRequests.List(context.Background(), repo.Owner, repo.Name, opts)