-
Notifications
You must be signed in to change notification settings - Fork 32
/
github-labels.py
84 lines (71 loc) · 2.81 KB
/
github-labels.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#!/usr/bin/python3
# Python helper to create labels in a Github repo
# 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"}
user = os.environ['SHORTNAME']
token = os.environ['TOKEN']
repo = user + '/pet-clinic'
if len(sys.argv) != 2:
print(" Usage: " + sys.argv[0] + " github-labels.yaml")
sys.exit(0)
def remove_all_labels(repo):
# Remove all labels in a repo
response = requests.get(baseurl + "/repos/" + repo + "/labels",
headers=headers,
auth=(user, token))
if response.status_code != 200:
# An error occured
print(COLINFO + "Error getting labels : " + str(response.status_code) + " " + response.text + COLRESET)
# Iterate and delete all labels
labels = json.loads(response.text)
for label in labels:
response = requests.delete(baseurl + "/repos/" + repo + "/labels/" + label['name'],
headers=headers,
auth=(user, token))
if response.status_code != 204:
# An error occured
print(COLINFO + "Error deleting label: " + str(response.status_code) + " " + response.text + COLRESET)
else:
sys.stdout.write(COLINFO + "." + COLRESET)
sys.stdout.flush()
def main():
print(COLINFO + "Configuring GitHub issues labels..." + COLRESET)
print(COLINFO + "[ ]" + COLRESET)
sys.stdout.write("\033[F")
sys.stdout.write("\033[1C")
sys.stdout.flush()
# Command line argument: labels as yaml file
labels_file = sys.argv[1]
# read the labels
try:
labels = yaml.load_all(open(labels_file, 'r'), Loader=yaml.FullLoader)
except yaml.YAMLError as exc:
print(COLINFO + exc + COLRESET)
remove_all_labels(repo)
# Populate the labels
for label in labels:
payload = json.dumps({
"name" : label['name'],
"description": label['description'],
"color" : label['color']
})
response = requests.post(baseurl + "/repos/" + repo + "/labels",
data=payload,
headers=headers,
auth=(user, token))
if response.status_code != 201:
# An error occured
print(COLINFO + "Error adding label " + label['name'] + ": " + str(response.status_code) + " " + response.text + COLRESET)
else:
sys.stdout.write(COLINFO + "." + COLRESET)
sys.stdout.flush()
print(COLRESET)
main()