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 a8c20fc commit 0aaa566Copy full SHA for 0aaa566
src/gh.js
@@ -61,7 +61,7 @@ async function waitForRunnerRegistered(label) {
61
core.info(`Waiting ${quietPeriodSeconds}s for the AWS EC2 instance to be registered in GitHub as a new self-hosted runner`);
62
await new Promise((r) => setTimeout(r, quietPeriodSeconds * 1000));
63
core.info(`Checking every ${retryIntervalSeconds}s if the GitHub self-hosted runner is registered`);
64
-
+ core.info(`The maximum waiting time is ${timeoutMinutes} minutes`);
65
return new Promise((resolve, reject) => {
66
const interval = setInterval(async () => {
67
const runner = await getRunner(label);
0 commit comments