MCPcopy Create free account
hub / github.com/defold/defold / get_labels

Function get_labels

scripts/releasenotes_github_projectv2.py:255–261  ·  view source on GitHub ↗
(*args)

Source from the content-addressed store, hash-verified

253 return data["organization"]["projectV2"]["items"]["nodes"]
254
255def get_labels(*args):
256 labels = []
257 for item in args:
258 for label in item["labels"]["nodes"]:
259 if not label["name"] in labels:
260 labels.append(label["name"])
261 return labels
262
263def get_issue_type_from_labels(labels):
264 if "breaking change" in labels:

Callers 1

parse_github_projectFunction · 0.85

Calls 1

appendMethod · 0.80

Tested by

no test coverage detected