You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the verify_versions.py script fetches tags of a mod repository, it only accesses the first tag page (e.g.https://api.github.com/repos/{}/{}/tags), while tags resource is paginated (i.e. searched tag might not be on the first results page).
From what I can gather, there is indeed no way to reorder or increase the number of tags fetched. One possible alternative is to instead pull the tag from the latest release, e.g. https://api.github.com/repos/{}/{}/releases/latest. The field seems to be tag_name.
When the
verify_versions.py
script fetches tags of a mod repository, it only accesses the first tag page (e.g. https://api.github.com/repos/{}/{}/tags), while tags resource is paginated (i.e. searched tag might not be on the first results page).See #16 (comment) for pages example.
The text was updated successfully, but these errors were encountered: