-
Notifications
You must be signed in to change notification settings - Fork 1
/
clear_github_labels.py
executable file
·48 lines (39 loc) · 1.64 KB
/
clear_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
#!/usr/bin/python3
# Python helper to clear 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"}
if len(sys.argv) != 3:
print(" Usage: " + sys.argv[0] + " user/org_name repo_name")
sys.exit(1)
user = sys.argv[1]
token = os.environ['GITHUB_API_TOKEN']
repo = user + "/" + sys.argv[2]
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()
remove_all_labels(repo)