From 66ddf90dac3c06eeb79d04e2d8986cba1520310f Mon Sep 17 00:00:00 2001 From: Peter Evans <18365890+peter-evans@users.noreply.github.com> Date: Thu, 15 Aug 2024 15:24:58 +0000 Subject: [PATCH] output retryafter for secondary rate limit --- dist/index.js | 3 ++- src/octokit-client.ts | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) 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.`) } }