From 82dbe86bf56c4e8b11bb149e2f30f9f2b9a1a39e Mon Sep 17 00:00:00 2001 From: peter-evans <18365890+peter-evans@users.noreply.github.com> Date: Fri, 10 Apr 2026 16:26:17 +0000 Subject: [PATCH] build: update distribution --- dist/index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dist/index.js b/dist/index.js index 11d7a2d751..ee0c059430 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}'`);