We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d396401 commit 165f6e3Copy full SHA for 165f6e3
.github/workflows/scripts/extract_commits.py
@@ -29,7 +29,7 @@ def commit_date(sha: str) -> str:
29
"""
30
url = f"https://api.github.com/repos/{OWNER}/{REPO}/commits/{sha}"
31
commit_data = return_json_from_url(url)
32
- return commit_data["commit"]["author"]["date"]
+ return commit_data["commit"]["committer"]["date"]
33
34
35
H = {
0 commit comments