File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
api/ruby/find-inactive-members Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -80,6 +80,7 @@ def member_email(login)
80
80
81
81
def organization_members
82
82
# get all organization members and place into an array of hashes
83
+ info "Finding #{ @organization } members "
83
84
@members = @client . organization_members ( @organization ) . collect do |m |
84
85
email =
85
86
{
@@ -92,11 +93,12 @@ def organization_members
92
93
end
93
94
94
95
def organization_repositories
96
+ info "Gathering a list of repositories..."
95
97
# get all repos in the organizaton and place into a hash
96
98
@repositories = @client . organization_repositories ( @organization ) . collect do |repo |
97
99
repo [ "full_name" ]
98
100
end
99
- info "#{ @repositories . length } repositories found. \n "
101
+ info "#{ @repositories . length } repositories discovered \n "
100
102
end
101
103
102
104
# method to switch member status to active
You can’t perform that action at this time.
0 commit comments