有没有办法在 Github wiki 中显示来自 requirements.txt 的过时依赖项?

Is there a way to display the outdated dependencies from a requirements.txt in a Github wiki?

我有一个正在维护的 Github wiki,我想包括一个部分来显示 requirements.txt 中的 python 依赖项是否已过时。我知道如何使用以下方法手动执行此操作:

pip list --outdated

访问页面时动态调用的最简单方法是什么?或另一种给出相同结果的方法?

"whenever the page is accessed"

我不知道通过访问该页面会触发 webhook:只要有很多人想阅读该页面,那将是昂贵的。

但是由于 GitHub wiki is a repo, it should be possible, as a pre-push commit 触发本地命令 pip list --outdated 并修改 wiki 本地克隆的 repo,以便将该输出推送到 wiki,然后最终将您的提交推送到您的常规 repo。