(issue)
| 41 | return has_assignees and (not has_help_wanted_label and not has_internal_label) |
| 42 | |
| 43 | def is_old_pull_request(issue): |
| 44 | has_waiting_for_update_label = False |
| 45 | labels = issue["labels"] |
| 46 | for label in labels: |
| 47 | if label["name"] == "WAITING_UPDATE": |
| 48 | has_waiting_for_update_label = True |
| 49 | break |
| 50 | return has_waiting_for_update_label |
| 51 | |
| 52 | # Grab the list of open Issues/PR |
| 53 | buffer = "Grab the list of open Issues/PR via the GitHub API...\n" |
no outgoing calls
no test coverage detected