From 7eee7a7e06c50ce8ea1d3aef75d5e2619d2aef32 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 8 Oct 2024 12:17:24 +0000 Subject: [PATCH] [CI] test built --- dist/index.js | 7 +++++-- report.txt | 1 + 2 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 report.txt diff --git a/dist/index.js b/dist/index.js index b32ff35..bcdfd37 100644 --- a/dist/index.js +++ b/dist/index.js @@ -62110,7 +62110,10 @@ function throttling(octokit, octokitOptions) { if (!enabled) { return {}; } - const common = { connection, timeout }; + const common = { timeout }; + if (typeof connection !== "undefined") { + common.connection = connection; + } if (groups.global == null) { createGroups(Bottleneck, common); } @@ -62151,7 +62154,7 @@ function throttling(octokit, octokitOptions) { const [state2, request, options] = info.args; const { pathname } = new URL(options.url, "http://github.test"); const shouldRetryGraphQL = pathname.startsWith("/graphql") && error.status !== 401; - if (!(shouldRetryGraphQL || error.status === 403)) { + if (!(shouldRetryGraphQL || error.status === 403 || error.status === 429)) { return; } const retryCount = ~~request.retryCount; diff --git a/report.txt b/report.txt new file mode 100644 index 0000000..c2e3c25 --- /dev/null +++ b/report.txt @@ -0,0 +1 @@ +1728389843