Increase per page limit to 100 (#278)

* Increase per page limit to 100

* Add build
This commit is contained in:
Imran Ismail
2022-10-17 02:04:29 +08:00
parent 5f57b3222d
commit 9fc5df9b9d
4 changed files with 6 additions and 4 deletions

3
dist/index.js vendored
View File

@@ -120,7 +120,8 @@ function getMaxSatisfyingVersion(targetVersion) {
try {
for (var _b = __asyncValues(octokit.paginate.iterator(octokit.repos.listReleases, {
owner: 'kubernetes-sigs',
repo: 'kustomize'
repo: 'kustomize',
per_page: 100
})), _c; _c = yield _b.next(), !_c.done;) {
const response = _c.value;
for (const release of response.data) {

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long