(*args)
| 253 | return data["organization"]["projectV2"]["items"]["nodes"] |
| 254 | |
| 255 | def 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 | |
| 263 | def get_issue_type_from_labels(labels): |
| 264 | if "breaking change" in labels: |
no test coverage detected