Increase github get issues fetch limit (#3183)

Co-authored-by: Praveen Kuttappan <praveen.kuttappan@gmail.com>
This commit is contained in:
Azure SDK Bot 2021-12-14 17:19:18 -08:00 committed by GitHub
parent 07d20e78e3
commit f73c9626fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -201,7 +201,7 @@ function Get-GitHubIssues {
$AuthToken
)
$uri = "$GithubAPIBaseURI/$RepoOwner/$RepoName/issues?labels=$Labels"
$uri = "$GithubAPIBaseURI/$RepoOwner/$RepoName/issues?labels=$Labels&per_page=100"
if ($CreatedBy) {
$uri += "&creator=$CreatedBy"