We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c7bc5e commit 6070763Copy full SHA for 6070763
src/tools/publish_toolstate.py
@@ -299,7 +299,13 @@ def update_latest(
299
if repo:
300
github_token = os.environ.get('TOOLSTATE_REPO_ACCESS_TOKEN')
301
if github_token:
302
- validate_maintainers(repo, github_token)
+ # FIXME: This is currently broken. Starting on 2021-09-15, GitHub
303
+ # seems to have changed it so that to list the collaborators
304
+ # requires admin permissions. I think this will probably just need
305
+ # to be removed since we are probably not going to use an admin
306
+ # token, and I don't see another way to do this.
307
+ print('maintainer validation disabled')
308
+ # validate_maintainers(repo, github_token)
309
else:
310
print('skipping toolstate maintainers validation since no GitHub token is present')
311
# When validating maintainers don't run the full script.
0 commit comments