@@ -210,11 +210,11 @@ func (s service) ListCommits(ctx context.Context, rs string, id uint64) ([]chang repo, err := ghRepoSpec(rs) if err != nil { // TODO: Map to 400 Bad Request HTTP error. return nil, err } cs, _, err := s.clV3.PullRequests.ListCommits(ctx, repo.Owner, repo.Repo, int(id), nil) cs, _, err := s.clV3.PullRequests.ListCommits(ctx, repo.Owner, repo.Repo, int(id), &github.ListOptions{PerPage: 100}) // TODO: Pagination. if err != nil { return nil, err } var commits []change.Commit for _, c := range cs {