Merge pull request #144 from fjogeleit/fix-retryWait

fix retryWait mapping
This commit is contained in:
Frank Jogeleit 2024-04-06 13:26:11 +02:00 committed by GitHub
commit 8af2803109
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

2
dist/index.js vendored
View file

@ -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') || '{}';

View file

@ -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') || '{}';