alexcrichton commented on Issue #2012:
FWIW I haven't actually seen myself actions get spawned in the order that they're listed. I feel like it seems to spawn somewhat randomly sometimes. I may be witnessing, though, everything get spawned at once and then each state slowly shows up in the UI "out of order".
Is this documented in Github Actions though that they spawn top-to-bottom?
fitzgen commented on Issue #2012:
If the repo's job queue is empty, then they all tend to get spawned at once, but once there are a bunch of things in the queue and there isn't enough capacity to spawn all at once, then I am 95% sure I've seen them spawned in order. I don't have a link to official docs on this though.
fitzgen commented on Issue #2012:
It seems that, within a matrix at least, order in the yaml corresponds to order of job spawning:
The order that you define a matrix matters. The first option you define will be the first job that runs in your workflow.
fitzgen commented on Issue #2012:
Hm, in this very PR the jobs are not being spawned in order. Gonna close this.
Last updated: Nov 22 2024 at 16:03 UTC