Skip to content

Commit

Permalink
Merge pull request #144 from fjogeleit/fix-retryWait
Browse files Browse the repository at this point in the history
fix retryWait mapping
  • Loading branch information
fjogeleit authored Apr 6, 2024
2 parents 74e0e96 + 8537e58 commit 8af2803
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -34017,7 +34017,7 @@ if (!!core.getInput('retry')) {

let retryWait = 3000
if (!!core.getInput('retryWait')) {
retry = parseInt(core.getInput('retryWait'))
retryWait = parseInt(core.getInput('retryWait'))
}

const data = core.getInput('data') || '{}';
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ if (!!core.getInput('retry')) {

let retryWait = 3000
if (!!core.getInput('retryWait')) {
retry = parseInt(core.getInput('retryWait'))
retryWait = parseInt(core.getInput('retryWait'))
}

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

0 comments on commit 8af2803

Please sign in to comment.