Skip to content

GHE:Console:Get PR Timestamps

lbonanomi edited this page Sep 25, 2019 · 1 revision
Repo.all.each do |repo|
	nwo = repo.name_with_owner;
	Repo.nwo(nwo).pull_requests.map.each do |pr| 
		print nwo;
		print ",PR,";
		puts pr.created_at;
	end
end
Clone this wiki locally