-
Notifications
You must be signed in to change notification settings - Fork 171
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
github-release脚本获取仓库所有release #171
base: master
Are you sure you want to change the base?
Conversation
请分离出具体的代码改动,不要把格式化和改动混合在一个 commit 中 |
还原了格式化的代码 |
大概清楚问题了。Github 的 releases api 具有分页的特性,要全部获取 releases 需要程序处理分页的逻辑。 但是,如果应用该补丁,可能会造成服务器下载过多的资源。 可以考虑将这个特性作为可选的,默认不开启,只下载第一页的 releases。 |
原始代码里就包含了下载的release数量限制,参考: |
@shankerwangmiao 的意思有可能是设置限制来避免翻了太多页的情况。考虑到 GitHub API 有 rate limit(尽管相对较大),再添加一个限制也是合理的,如果在指定的页里面都没有找到 release,那么就还是按照原来的逻辑。 |
嗯,我看从功能上已经没什么问题了。但是,希望你能改进一下解析 |
参考GitHub API 文档 创建分页方法的示例 改进了下代码,通过正则获取 |
@shankerwangmiao @taoky 还有什么问题嘛? |
我在我们自己的服务器上测试了这个脚本,发现获取分页的逻辑是有问题的: 当 Releases 数量并不足以分页时,GitHub API 并没有返回 由于我不会 Python,并不能提交正确的代码,希望作者更正这个错误 |
@jimorsm 请进一步根据问题修正脚本 |
解决github-release脚本不能获取仓库所有release问题 #170