infra-utils/github/add_user_to_private.py
Jakub Sokołowski 9c02c8b301
add script for adding user to repos
Signed-off-by: Jakub Sokołowski <jakub@status.im>
2019-10-17 11:41:57 +02:00

23 lines
437 B
Python
Executable File

#!/usr/bin/env python3
import os
from github import Github
gh = Github(os.environ['GH_TOKEN'])
org = gh.get_organization('status-im')
#print("Scopes:", gh.oauth_scopes)
for repo in org.get_repos():
skip = any([
repo.fork,
repo.archived,
not repo.private,
repo.name.endswith('-pass'),
])
if skip:
continue
print(repo)
repo.add_to_collaborators('status-im-auto', permission='pull')