Skip to content

Commit 8af2803

Browse files
authored
Merge pull request #144 from fjogeleit/fix-retryWait
fix retryWait mapping
2 parents 74e0e96 + 8537e58 commit 8af2803

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -34017,7 +34017,7 @@ if (!!core.getInput('retry')) {
3401734017

3401834018
let retryWait = 3000
3401934019
if (!!core.getInput('retryWait')) {
34020-
retry = parseInt(core.getInput('retryWait'))
34020+
retryWait = parseInt(core.getInput('retryWait'))
3402134021
}
3402234022

3402334023
const data = core.getInput('data') || '{}';

src/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ if (!!core.getInput('retry')) {
5858

5959
let retryWait = 3000
6060
if (!!core.getInput('retryWait')) {
61-
retry = parseInt(core.getInput('retryWait'))
61+
retryWait = parseInt(core.getInput('retryWait'))
6262
}
6363

6464
const data = core.getInput('data') || '{}';

0 commit comments

Comments
 (0)