stable_branch_for

in lib/tasks/task_helpers.rb [63:79]


  def stable_branch_for(slug)
    case slug
    when 'ee'
      "#{stable_branch_name}-ee"
    when 'omnibus', 'runner'
      stable_branch_name
    
    
    when 'charts'
      charts_stable_branch
    
    
    else
      default_branch(products[slug].fetch('repo'))
    end
  end