State of a pull request.
| 92 | |
| 93 | @enum.unique |
| 94 | class PullRequestState(enum.Enum): |
| 95 | """State of a pull request.""" |
| 96 | |
| 97 | review = f"{LABEL_PREFIX} review" |
| 98 | committer_review = f"{LABEL_PREFIX} committer review" |
| 99 | changes = f"{LABEL_PREFIX} changes" |
| 100 | change_review = f"{LABEL_PREFIX} change review" |
| 101 | merge = f"{LABEL_PREFIX} merge" |
| 102 | |
| 103 | |
| 104 | COMMITTER_ROLES = {'OWNER', 'MEMBER'} |