Skip to content

Instantly share code, notes, and snippets.

@afeld
Last active September 14, 2015 16:43
Show Gist options
  • Save afeld/362e064243a5bf293895 to your computer and use it in GitHub Desktop.
Save afeld/362e064243a5bf293895 to your computer and use it in GitHub Desktop.
list 18F team members
require 'octokit'
Octokit.auto_paginate = true
client = Octokit::Client.new(access_token: ENV['GITHUB_TOKEN'])
teams = client.organization_teams('18F')
team = teams.find{|team| team.slug.downcase == '18f' }
members = client.team_members(team.id)
members.each do |member|
puts member.login
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment