overte-thingvellir/tools/ci-scripts/remove-labels.py
2019-11-18 15:20:37 -08:00

9 lines
361 B
Python

import os, json
from github import Github
label_prefix = os.environ['LABEL_PREFIX']
context = json.loads(os.environ['GITHUB_CONTEXT'])
pr = Github(os.environ['GITHUB_TOKEN']).get_repo(context['repository']).get_pull(context['event']['number'])
for label in pr.get_labels():
if label.name.startswith(label_prefix):
pr.remove_from_labels(label.name)