Use automatic pagination mapping function
This commit is contained in:
parent
1bea17f717
commit
898dead2d6
3 changed files with 13 additions and 7 deletions
7
lib/api-client.js
generated
7
lib/api-client.js
generated
|
|
@ -169,7 +169,12 @@ async function listActionsCaches(key, ref, logger) {
|
|||
const repositoryNwo = (0, repository_1.parseRepositoryNwo)((0, util_1.getRequiredEnvParam)("GITHUB_REPOSITORY"));
|
||||
logger.debug(`Retrieving Actions caches for key ${key} and ref ${ref}`);
|
||||
const apiClient = getApiClient();
|
||||
return await apiClient.paginate("GET /repos/{owner}/{repo}/actions/caches", { owner: repositoryNwo.owner, repo: repositoryNwo.repo, key, ref }, (response) => response.data.actions_caches);
|
||||
return await apiClient.paginate("GET /repos/{owner}/{repo}/actions/caches", {
|
||||
owner: repositoryNwo.owner,
|
||||
repo: repositoryNwo.repo,
|
||||
key,
|
||||
ref,
|
||||
});
|
||||
}
|
||||
exports.listActionsCaches = listActionsCaches;
|
||||
function wrapApiConfigurationError(e) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue