ENUM
IssueEventType
The possible issue event types.
link GraphQL Schema definition
1 enum IssueEventType { 2 3 # The issue was assigned to the actor. 4 5 6 # The base branch was force pushed by the actor. 7 8 9 # The issue was closed by the actor. 10 11 12 # The issue had a milestone removed from it. 13 14 15 # The branch was deployed by the actor. 16 17 18 # The head branch was deleted by the actor. 19 20 21 # The head branch was force pushed by the actor. 22 23 24 # The head branch was restored by the actor. 25 26 27 # A label was added to the issue. 28 29 30 # The issue was locked by the actor. 31 32 33 # The pull request or issue was mentioned by the actor. 34 35 36 # The issue was merged by the actor. 37 38 39 # The issue had a milestone added to it. 40 41 42 # The issue was referenced from a commit message. 43 44 45 # The issue's title was changed. 46 47 48 # The issue was reopened by the actor. 49 50 51 # The actor requested review from the subject. 52 53 54 # The actor removed the review request for the subject. 55 56 57 # The review was dismissed by the actor. 58 59 60 # The pull request or issue was subscribed to by the actor. 61 62 63 # The issue was unassigned to the actor. 64 65 66 # A label was removed from the issue. 67 68 69 # The issue was unlocked by the actor. 70 71 72 # The pull request or issue was unsubscribed from by the actor. 73 74 }
link Required by
- AssignedEventRepresents an 'assigned' event on a given issue or pull request.
- BaseRefForcePushedEventRepresents a 'base_ref_force_pushed' event on a given pull request.
- ClosedEventRepresents a 'closed' event on a given issue or pull request.
- DemilestonedEventRepresents a 'demilestoned' event on a given issue or pull request.
- DeployedEventRepresents a 'deployed' event on a given issue or pull request.
- HeadRefDeletedEventRepresents a 'head_ref_deleted' event on a given pull request.
- HeadRefForcePushedEventRepresents a 'head_ref_force_pushed' event on a given pull request.
- HeadRefRestoredEventRepresents a 'head_ref_restored' event on a given pull request.
- IssueEventRepresents an issue event.
- LabeledEventRepresents a 'labeled' event on a given issue or pull request.
- LockedEventRepresents a 'locked' event on a given issue or pull request.
- MentionedEventRepresents a 'mentioned' event on a given issue or pull request.
- MergedEventRepresents a 'merged' event on a given pull request.
- MilestonedEventRepresents a 'milestoned' event on a given issue or pull request.
- ReferencedEventRepresents a 'referenced' event on a given issue or pull request.
- RenamedEventRepresents a 'renamed' event on a given issue or pull request or pull request.
- ReopenedEventRepresents a 'reopened' event on a given issue or pull request.
- ReviewDismissedEventRepresents a 'review_dismissed' event on a given issue or pull request.
- ReviewRequestedEventRepresents an 'review_requested' event on a given pull request.
- ReviewRequestRemovedEventRepresents an 'review_request_removed' event on a given pull request.
- SubscribedEventRepresents a 'subscribed' event on a given issue or pull request.
- UnassignedEventRepresents a 'unassigned' event on a given issue or pull request.
- UnlabeledEventRepresents a 'unlabeled' event on a given issue or pull request.
- UnlockedEventRepresents a 'unlocked' event on a given issue or pull request.
- UnsubscribedEventRepresents a 'unsubscribed' event on a given issue or pull request.