File tree Expand file tree Collapse file tree
api/ruby/find-inactive-members Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -80,6 +80,7 @@ def member_email(login)
8080
8181 def organization_members
8282 # get all organization members and place into an array of hashes
83+ info "Finding #{ @organization } members "
8384 @members = @client . organization_members ( @organization ) . collect do |m |
8485 email =
8586 {
@@ -92,11 +93,12 @@ def organization_members
9293 end
9394
9495 def organization_repositories
96+ info "Gathering a list of repositories..."
9597 # get all repos in the organizaton and place into a hash
9698 @repositories = @client . organization_repositories ( @organization ) . collect do |repo |
9799 repo [ "full_name" ]
98100 end
99- info "#{ @repositories . length } repositories found. \n "
101+ info "#{ @repositories . length } repositories discovered \n "
100102 end
101103
102104 # method to switch member status to active
You can’t perform that action at this time.
0 commit comments