cleanup
This commit is contained in:
parent
7bd174126b
commit
91229c7472
|
@ -109,6 +109,7 @@ class ChangelogGenerator
|
||||||
url = "https://api.github.com/repos/#{@options[:user]}/#{@options[:project]}/tags"
|
url = "https://api.github.com/repos/#{@options[:user]}/#{@options[:project]}/tags"
|
||||||
|
|
||||||
if @options[:verbose]
|
if @options[:verbose]
|
||||||
|
|
||||||
puts "Receive tags for repo #{url}"
|
puts "Receive tags for repo #{url}"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -293,8 +294,6 @@ class ChangelogGenerator
|
||||||
end
|
end
|
||||||
|
|
||||||
def get_all_issues
|
def get_all_issues
|
||||||
all_issues = []
|
|
||||||
|
|
||||||
issues_req = @github.issues.list user: @options[:user], repo: @options[:project], state: 'closed', filter: 'all', labels: nil
|
issues_req = @github.issues.list user: @options[:user], repo: @options[:project], state: 'closed', filter: 'all', labels: nil
|
||||||
|
|
||||||
filtered_issues = issues_req.body.select { |issues|
|
filtered_issues = issues_req.body.select { |issues|
|
||||||
|
@ -315,7 +314,7 @@ class ChangelogGenerator
|
||||||
}
|
}
|
||||||
|
|
||||||
if @options[:verbose]
|
if @options[:verbose]
|
||||||
puts "Receive all closed issues with labels #{@options[:labels]}: #{all_issues.count} issues"
|
puts "Receive all closed issues with labels #{@options[:labels]}: #{filtered_issues.count} issues"
|
||||||
end
|
end
|
||||||
|
|
||||||
filtered_issues
|
filtered_issues
|
||||||
|
|
Loading…
Reference in New Issue
Block a user