return repos.sort((a, b) => {
    a = a.full_name.toLowerCase()
    b = b.full_name.toLowerCase()
    return a < b ? -1 : (b < a ? 1 : 0)
  })