I’m seeing a similar error in a couple of different repositories. Published a new version of a package to juliahub and same tagbot configuration that has worked for previous versions failed with 502 “Server Error”:
Warning: GitHub returned a 5xx error code
41
Traceback (most recent call last):
42
File "/root/tagbot/action/__main__.py", line 74, in <module>
43
versions = repo.new_versions()
44
File "/root/tagbot/action/repo.py", line 432, in new_versions
45
return self._filter_map_versions(versions)
46
File "/root/tagbot/action/repo.py", line 271, in _filter_map_versions
47
expected = self._commit_sha_from_registry_pr(version, tree)
48
File "/root/tagbot/action/repo.py", line 205, in _commit_sha_from_registry_pr
49
pr = self._registry_pr(version)
50
File "/root/tagbot/action/repo.py", line 196, in _registry_pr
51
for pr in prs:
52
File "/usr/local/lib/python3.8/site-packages/github/PaginatedList.py", line 56, in __iter__
53
newElements = self._grow()
54
File "/usr/local/lib/python3.8/site-packages/github/PaginatedList.py", line 67, in _grow
55
newElements = self._fetchNextPage()
56
File "/usr/local/lib/python3.8/site-packages/github/PaginatedList.py", line 199, in _fetchNextPage
57
headers, data = self.__requester.requestJsonAndCheck(
58
File "/usr/local/lib/python3.8/site-packages/github/Requester.py", line 315, in requestJsonAndCheck
59
return self.__check(
60
File "/usr/local/lib/python3.8/site-packages/github/Requester.py", line 340, in __check
61
raise self.__createException(status, responseHeaders, output)
62
github.GithubException.GithubException: 502 {"message": "Server Error"}
63