I have a requirement in Github-Action where i need to feed input after 1st job is finished. I.e. The first job (Build) starts automatically after each commit without taking any input and it runs succesfully. Then for second job to start(Deploy), based on input(Environment) i select the Deploy should start executing.
I have figured out the manual job execution from https://stackoverflow.com/a/73708545/2728619 But I need help for taking input after 1st job is finished.
For Manual trigger, i tried the solution https://stackoverflow.com/a/73708545/2728619
I am expeccting reading input after 1st job is run(not at the beginning of the workflow).