With "needs: jobX", jobX is running at the end #77
Labels
No Label
kind
bug
kind
build
kind
dependencies
kind
docs
kind
enhancement
kind
feature
kind
help wanted
kind
proposal
kind
refactor
related
act
related
environment
related
exec
related
gitea
related
workflow
reviewed
confirmed
reviewed
duplicate
reviewed
invalid
reviewed
needs feedback
reviewed
wontfix
No Milestone
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: gitea/act_runner#77
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. 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