We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f6978f commit eec7ab7Copy full SHA for eec7ab7
1 file changed
dist/index.js
@@ -1509,7 +1509,9 @@ class GitHubHelper {
1509
const isEventualConsistencyError = (e) => e instanceof request_error_1.RequestError &&
1510
e.status === 422 &&
1511
e.message.includes('Could not resolve to a node');
1512
- const withRetryForNewPr = (fn) => pull.created ? utils.retryWithBackoff(fn, isEventualConsistencyError) : fn();
+ const withRetryForNewPr = (fn) => pull.created
1513
+ ? utils.retryWithBackoff(fn, isEventualConsistencyError)
1514
+ : fn();
1515
// Apply milestone
1516
if (inputs.milestone) {
1517
core.info(`Applying milestone '${inputs.milestone}'`);
0 commit comments