builds_without_retry_sorted

in app/models/commit.rb [152:160]


  def builds_without_retry_sorted
    return builds_without_retry unless config_processor

    stages = config_processor.stages
    builds_without_retry.sort_by do |build|
      [stages.index(build.stage) || -1, build.name || ""]
    end
  end