With "needs: jobX", jobX is running at the end #77
Loading…
Reference in New Issue
There is no content yet.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may exist for a short time before cleaning up, in most cases it CANNOT be undone. Continue?
Hey!
I have something like this:
However, it appears that
prepare
is always running last, instead of first:I monitored the jobs running, and
prepare
definitely ran last.Without
needs: prepare
, the same happened too.I also tried putting "prepare" at the bottom rather than above "generate_ssl" (in case Gitea Actions somehow were just reversing the order of the jobs), and the exact same happens, with the same order as above.
Is this a bug, or am I doing something wrong here?
Thank you very much!
Alright... looks like the jobs are simply being sorted alphabetically, and definitely, the
needs
isn't working.It shouldn't be. I'll try to fix it later.
Fixed by https://github.com/go-gitea/gitea/pull/23789