diff --git a/dist/index.js b/dist/index.js index 7065322..a7fa377 100644 --- a/dist/index.js +++ b/dist/index.js @@ -1498,8 +1498,9 @@ exports.throttleOptions = { return true; } }, - onSecondaryRateLimit: (_, options) => { + onSecondaryRateLimit: (retryAfter, options) => { core.warning(`Hit secondary rate limit for request ${options.method} ${options.url}`); + core.warning(`Requests may be retried after ${retryAfter} seconds.`); } }; const proxyFetch = (proxyUrl) => (url, opts) => { diff --git a/src/octokit-client.ts b/src/octokit-client.ts index 4ea9974..1ff6961 100644 --- a/src/octokit-client.ts +++ b/src/octokit-client.ts @@ -25,10 +25,11 @@ export const throttleOptions = { return true } }, - onSecondaryRateLimit: (_, options) => { + onSecondaryRateLimit: (retryAfter, options) => { core.warning( `Hit secondary rate limit for request ${options.method} ${options.url}` ) + core.warning(`Requests may be retried after ${retryAfter} seconds.`) } }