From eec7ab75b2f71ddc8a223341c83a67f6f774c39f Mon Sep 17 00:00:00 2001 From: actions-bot <58130806+actions-bot@users.noreply.github.com> Date: Fri, 10 Apr 2026 17:35:29 +0100 Subject: [PATCH] build: update distribution (#4361) Co-authored-by: peter-evans <18365890+peter-evans@users.noreply.github.com> --- dist/index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dist/index.js b/dist/index.js index 11d7a2d7..ee0c0594 100644 --- a/dist/index.js +++ b/dist/index.js @@ -1509,7 +1509,9 @@ class GitHubHelper { const isEventualConsistencyError = (e) => e instanceof request_error_1.RequestError && e.status === 422 && e.message.includes('Could not resolve to a node'); - const withRetryForNewPr = (fn) => pull.created ? utils.retryWithBackoff(fn, isEventualConsistencyError) : fn(); + const withRetryForNewPr = (fn) => pull.created + ? utils.retryWithBackoff(fn, isEventualConsistencyError) + : fn(); // Apply milestone if (inputs.milestone) { core.info(`Applying milestone '${inputs.milestone}'`);