Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to run github actions sequentially

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

like image 368
user20531393 Avatar asked Jun 23 '26 08:06

user20531393


1 Answers

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

like image 60
Sascha Avatar answered Jun 25 '26 06:06

Sascha