mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-08-26 19:48:56 +00:00
Merge pull request #311 from fidencio/topic/count-committers-from-all-the-branches
elections: Go through project branches
This commit is contained in:
commit
6f46be3f2e
@ -108,7 +108,8 @@ for repo in org.repositories():
|
|||||||
(repo, start_time, end_time))
|
(repo, start_time, end_time))
|
||||||
|
|
||||||
authors = AuthorSet()
|
authors = AuthorSet()
|
||||||
for commit in repo.commits(since=start_time, until=end_time,
|
for branch in repo.branches():
|
||||||
|
for commit in repo.commits(sha=branch.name, since=start_time, until=end_time,
|
||||||
number=number):
|
number=number):
|
||||||
if commit.author is None:
|
if commit.author is None:
|
||||||
if commit.commit.author is None:
|
if commit.commit.author is None:
|
||||||
|
Loading…
Reference in New Issue
Block a user