Skip to content

Commit 8ed5cb6

Browse files
committed
typo fix that was bugging me
1 parent ac9385a commit 8ed5cb6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9827,7 +9827,7 @@ const sleep = ms => new Promise(resolve => setTimeout(resolve, ms))
98279827
}
98289828

98299829
// zzz
9830-
core.info(`waiting for #${delay/1000} minutes before polling the status again`)
9830+
core.info(`waiting for #${delay/1000} seconds before polling the status again`)
98319831
await sleep(delay)
98329832

98339833
// get the data again

src/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export default async function ({ token, delay, timeout }) {
5353
}
5454

5555
// zzz
56-
core.info(`waiting for #${delay/1000} minutes before polling the status again`)
56+
core.info(`waiting for #${delay/1000} seconds before polling the status again`)
5757
await sleep(delay)
5858

5959
// get the data again

0 commit comments

Comments
 (0)