await-remote-run
await-remote-run copied to clipboard
Await for specific job inside remote run
First things first, thank you for this awesome GitHub Actions! 🎉
Would it be possible to go a level deeper and specify a job ID inside the remote run ?
My use case is the following :
- I have a remote job have 2 jobs : build + deploy
- The current
await-remote-runworks perfect to follow the full completion of the whole run (after the 2 jobs are complete) - But in my case I only need the build job inside that run to be complete
Thanks a lot!
So you'd like to consider a job complete after a specific step has completed?
No, that would be a step too far.
I would like to have the completed status of a specific job inside a workflow/run.
Use-case:
- I have a workflow/run with 2 jobs : first, build, then, deploy.
- In another repository, I need to start a job when the build job in the first workflow is complete.
In the current setup, it waits that both build and deploy jobs are finished and I would like to wait only for build job.
But maybe I'm missing something with your action and this is already possible.