-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tools: sync tool for envoyproxy/assignable team. (#8015)
Bulk update of team to match envoyproxy organization. While at it, cleaned up some venv stuff in shell_utils.sh. Risk level: Low Testing: Synced 157 members from envoyproxy to envoyproxy/assignable. Signed-off-by: Harvey Tuch <[email protected]>
- Loading branch information
Showing
6 changed files
with
75 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
PyGithub==1.43.8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# Sync envoyproxy organization users to envoyproxy/assignable team. | ||
# | ||
# This can be used for bulk cleanups if envoyproxy/assignable is not consistent | ||
# with organization membership. In general, prefer to add new members by editing | ||
# the envoyproxy/assignable in the GitHub UI, which will also cause an | ||
# organization invite to be sent; this reduces the need to manually manage | ||
# access tokens. | ||
# | ||
# Note: the access token supplied must have admin:org (write:org, read:org) | ||
# permissions (and ideally be scoped no more widely than this). See Settings -> | ||
# Developer settings -> Personal access tokens for access token generation. | ||
# Ideally, these should be cleaned up after use. | ||
|
||
import os | ||
import sys | ||
|
||
import github | ||
|
||
|
||
def GetConfirmation(): | ||
"""Obtain stdin confirmation to add users in GH.""" | ||
return input('Add users to envoyproxy/assignable ? [yN] ').strip().lower() in ('y', 'yes') | ||
|
||
|
||
def SyncAssignable(access_token): | ||
organization = github.Github(access_token).get_organization('envoyproxy') | ||
team = organization.get_team_by_slug('assignable') | ||
organization_members = set(organization.get_members()) | ||
assignable_members = set(team.get_members()) | ||
missing = organization_members.difference(assignable_members) | ||
|
||
if not missing: | ||
print('envoyproxy/assignable is consistent with organization membership.') | ||
return 0 | ||
|
||
print('The following organization members are missing from envoyproxy/assignable:') | ||
for m in missing: | ||
print(m.login) | ||
|
||
if not GetConfirmation(): | ||
return 1 | ||
|
||
for m in missing: | ||
team.add_membership(m, 'member') | ||
|
||
|
||
if __name__ == '__main__': | ||
access_token = os.getenv('GH_ACCESS_TOKEN') | ||
if not access_token: | ||
print('Missing GH_ACCESS_TOKEN') | ||
sys.exit(1) | ||
|
||
sys.exit(SyncAssignable(access_token)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/bash | ||
|
||
. tools/shell_utils.sh | ||
|
||
set -e | ||
|
||
python_venv sync_assignable |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters