英文:
Getting ETA to GitHub Action's completion
问题
这是 GitHub Actions 状态的截图:
是否有一种方法可以显示 GitHub Action 完成的预计时间?
我想象中的方法是通过某种方式来计算特定 GitHub Action 的历史运行时间的平均值。
英文:
Here is a screenshot of GitHub Actions status:
Is there any way one can display an ETA until a GitHub Action completes?
I am imagining it somehow averages historical runtimes for a particular GitHub Action.
答案1
得分: 2
这里没有来自GitHub的API。
但你可以构建自己的系统,缓存构建时间,并基于此计算平均值。
英文:
There is no API that comes from GitHub for this.
But you could build your own system, that caches the build times and based on that calculates the average.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论