https://github.com/angular/angular
Revision a01acec7febf30bdedd7fad2b6c2187886b3e9c0 authored by George Kalpakas on 15 September 2018, 12:44:38 UTC, committed by Kara Erickson on 26 September 2018, 22:26:19 UTC
As it turns out, in GitHub API paginated requests, page numbering is
1-based. (https://developer.github.com/v3/#pagination)

Starting at page 0 (which returns the first page), results in making the
same request twice and logging incorrect numbers (since the first 100
items are listed twice).

PR Close #25671
1 parent 021f434
Raw File
Tip revision: a01acec7febf30bdedd7fad2b6c2187886b3e9c0 authored by George Kalpakas on 15 September 2018, 12:44:38 UTC
fix(docs-infra): use correct parameters for paginated requests to GitHub (#25671)
Tip revision: a01acec
.gitattributes
# Auto detect text files and perform LF normalization
* text=auto

# JS and TS files must always use LF for tools to work
*.js eol=lf
*.ts eol=lf

# Must keep Windows line ending to be parsed correctly
scripts/windows/packages.txt eol=crlf
back to top