await-remote-run icon indicating copy to clipboard operation
await-remote-run copied to clipboard

Await for specific job inside remote run

Open jbelien opened this issue 1 year ago • 2 comments

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-run works 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!

jbelien avatar May 29 '24 20:05 jbelien

So you'd like to consider a job complete after a specific step has completed?

Codex- avatar May 29 '24 21:05 Codex-

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.

jbelien avatar May 30 '24 20:05 jbelien