3

I'm attempting to execute the same GitHub operations in a sequential order, so every build will have an action run, but it should function so that the previous action is finished before the next build begins.

Something like this but without the extra package import https://github.com/marketplace/actions/consecutive-workflow-action

https://github.com/fountainhead/action-wait-for-check

https://github.com/lewagon/wait-on-check-action

user20531393
  • 31
  • 1
  • 3

1 Answers1

2

You can have a look at the GitHub Actions keyword needs and the workflow_run event. Also have a look at this question here.

Sascha
  • 302
  • 1
  • 7
  • As it’s currently written, your answer is unclear. Please [edit] to add additional details that will help others understand how this addresses the question asked. You can find more information on how to write good answers [in the help center](/help/how-to-answer). – Community Nov 19 '22 at 20:59