-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: upgrade libs, node 20 #16
Conversation
Hi @aurelien-baudet , any updates on this PR please? Thanks. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems ok, just a question
@@ -23,7 +23,7 @@ inputs: | |||
display-workflow-run-url: | |||
description: 'Get the URL of the triggered workflow and display it in logs (useful to follow the progress of the triggered workflow)' | |||
required: false | |||
default: true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why did you add quotes ? It should be a boolean value
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not really, why ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It should be a boolean value
Looking at the schema, the type of default
is string
. However, I don't think it will actually change any behaviour as GHA likely coerces it into a string anyway. This StackOverflow answer may also help explain.
It may be worth adding the quotes if only to avoid your editor showing a syntax error, but it should probably then use single-quotes to be consistent with the rest of the file.
Should this line be changed?
I also don't think this line should be changed. Whether the input is processed as a string or boolean is dependent on whether core.getInput
or core.getBooleanInput
is used in the script: https://www.npmjs.com/package/@actions/core#inputsoutputs
@@ -35,22 +35,22 @@ inputs: | |||
wait-for-completion: | |||
description: 'Block until the triggered workflow has finished' | |||
required: false | |||
default: true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here, why ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's the status of the PR ? Also, there is a warning with the action:
|
Also wondering if there is any update on this? |
Sorry, I have no more time and energy to maintain this repository. I even don't have computer anymore. Someone of you should for this repository and merge the different pull requests. |
Hi @aurelien-baudet, I have created a fork of your repository that I can maintain. https://github.com/iamludal/workflow-dispatch |
Does this project really need another fork when there is already the original repository ? The original repository seems still maintained. Is there a reason to not for moving to it ? |
Yes, this fork from @aurelien-baudet adds some inputs to wait for the workflow completion before exiting. In the original repository, the workflow is triggered and exits successfully immediately. |
Thanks for the answer. IMHO the best, if possible, would be to add those inputs in the original repository which are well maintained. I'll ask the original repo if he's interested benc-uk#73 |
I agree with you, I would prefer this solution over having to maintain a fork myself. I can do it if needed, but this is not the best solution. |
Repository transferred to https://github.com/the-actions-org/workflow-dispatch |
These issues were resolved in #18 |
Upgraded repo to support current stable nodeJS and libraries.