Skip to content

Commit 165f6e3

Browse files
authored
Fix tags sorting based on committer date (#1998)
1 parent d396401 commit 165f6e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/scripts/extract_commits.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def commit_date(sha: str) -> str:
2929
"""
3030
url = f"https://api.github.com/repos/{OWNER}/{REPO}/commits/{sha}"
3131
commit_data = return_json_from_url(url)
32-
return commit_data["commit"]["author"]["date"]
32+
return commit_data["commit"]["committer"]["date"]
3333

3434

3535
H = {

0 commit comments

Comments
 (0)