replace the default elapsed time value of 50 with 45 #45
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
Replaced the default elpased time value of 50 with 45 to align it with
action.yml
.Background
I have just read through the entire code to understand how it works.
And I found that the default elapsed time value in the code is not aligned with
action.yml
default value.The
time_elapsed
default value is defined as45
inaction.yml
.But the
timeElapsed
default value is defined as50
inlibrary.js
.It confuses me as to which one is correct.
After searching git commit logs, I can confirm that
45
is the default value. (#36)Although it doesn't affect the running process, I think it can confuse people who read the code.
Thanks for developing such a great github actions!