-
Notifications
You must be signed in to change notification settings - Fork 1
/
list_org_repos.py
executable file
·45 lines (36 loc) · 1.34 KB
/
list_org_repos.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/python3
# Python helper to list repos from a Github org
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
import os, sys, json, requests, yaml
# Color constants
# Reference: https://gist.github.com/chrisopedia/8754917
COLINFO="\033[0;35m"
COLRESET="\033[m"
baseurl = 'https://api.github.com'
headers = {"Content-Type": "application/json", "Accept": "application/vnd.github.v3+json"}
if len(sys.argv) != 3:
print(" Usage: " + sys.argv[0] + " myorg-repos.yaml org_name")
sys.exit(1)
repos_file = sys.argv[1]
org = sys.argv[2]
token = os.environ['GITHUB_API_TOKEN']
def list_org_repos():
# Get list of all repos in an org
response = requests.get(baseurl + "/orgs/" + org + "/repos",
headers=headers,
auth=(org, token))
if response.status_code != 200:
# An error occured
print(COLINFO + "Error getting labels : " + str(response.status_code) + " " + response.text
+ COLRESET)
# Convert repos to YAML
json_repos = json.loads(response.text)
f = open(repos_file, 'w')
for repo in json_repos:
if not(repo["archived"]):
f.write ('---\n')
f.write (f'name: {repo["name"]}\n')
f.close
list_org_repos()