Is there a way (perhaps custom step/job on the marketplace) that prompts the user for input in the middle of a workflow?
I know it is possible to define user input fields when the workflow is triggered manually - workflow_dispatch
event.
However, in my environment, the workflows need to be triggered by pull requests.
The logic is something like:
automated start -> wait for user input -> automated action based on the input
Is it possible to have a user input or survey step when the workflow is started automatically? I would appreciate any help on this matter!