如何获取 github 仓库的最新发布日期

How to get the latest release date of a github repo

对于我的 discord.js 机器人,我想要一种方法来获取最新的 GitHub 发布日期,但回购协议在组织中是私有的,我想要一个简单的方法,也许使用 child_process.exec 可以做到,但我在互联网上找不到任何东西。

我只想要时间戳或字符串中的日期。

您可以调用 GitHub API release

GET /repos/{owner}/{repo}/releases/latest
# Example
https://api.github.com/repos/{owner}/{repo}/releases/lates

那么答案将包括:

"created_at": "2013-02-27T19:35:32Z",
"published_at": "2013-02-27T19:35:32Z",

发布日期应该是你想要的。