Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
marcosmicJack committed Oct 9, 2023
1 parent a8e4b07 commit ed136b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -63157,6 +63157,7 @@ async function waitForRunnersRegistered(labels) {
core.info(`Checking every ${retryIntervalSeconds}s if the GitHub self-hosted runner is registered`);
return new Promise((resolve, reject) => {
const interval = setInterval(async () => {
core.info(`Labels: ${labels}`)
const runners = await getRunners(labels);
if (waitSeconds > timeoutMinutes * 60) {
core.error('GitHub self-hosted runner registration error');
Expand Down
1 change: 1 addition & 0 deletions src/gh.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ async function waitForRunnersRegistered(labels) {
core.info(`Checking every ${retryIntervalSeconds}s if the GitHub self-hosted runner is registered`);
return new Promise((resolve, reject) => {
const interval = setInterval(async () => {
core.info(`Labels: ${labels}`)
const runners = await getRunners(labels);
if (waitSeconds > timeoutMinutes * 60) {
core.error('GitHub self-hosted runner registration error');
Expand Down

0 comments on commit ed136b4

Please sign in to comment.