Skip to content

Commit

Permalink
chore(build): update dist/index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
AriPerkkio authored and actions-user committed Dec 27, 2021
1 parent 4152717 commit 223700c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5780,6 +5780,7 @@ var GithubClient = class {
return await request();
} catch (error2) {
core.info(`Request failed. Retrying ${retryCount}/${this.MAX_RETRIES}.`);
await sleep(5e3);
}
}
return await request();
Expand Down Expand Up @@ -5823,6 +5824,9 @@ var GithubClient = class {
}));
}
};
async function sleep(timeMs) {
await new Promise((resolve) => setTimeout(resolve, timeMs));
}
var github_client_default = new GithubClient();

// src/run-tester.ts
Expand Down

0 comments on commit 223700c

Please sign in to comment.