mirror of
https://github.com/docker/compose.git
synced 2025-04-08 17:05:13 +02:00
"Bump 1.24.0-rc1"
Signed-off-by: Djordje Lukic <djordje.lukic@docker.com>
This commit is contained in:
parent
2007951731
commit
0f3d4ddaa7
@ -219,6 +219,8 @@ def get_contributors(pr_data):
|
||||
commits = pr_data.get_commits()
|
||||
authors = {}
|
||||
for commit in commits:
|
||||
if not commit.author:
|
||||
continue
|
||||
author = commit.author.login
|
||||
authors[author] = authors.get(author, 0) + 1
|
||||
return [x[0] for x in sorted(list(authors.items()), key=lambda x: x[1])]
|
||||
|
Loading…
x
Reference in New Issue
Block a user