ENUM

IssueEventType

The possible issue event types.

link GraphQL Schema definition

1enum IssueEventType {
2
3# The issue was assigned to the actor.
4ASSIGNED
5
6# The base branch was force pushed by the actor.
7BASE_REF_FORCE_PUSHED
8
9# The issue was closed by the actor.
10CLOSED
11
12# The issue had a milestone removed from it.
13DEMILESTONED
14
15# The branch was deployed by the actor.
16DEPLOYED
17
18# The head branch was deleted by the actor.
19HEAD_REF_DELETED
20
21# The head branch was force pushed by the actor.
22HEAD_REF_FORCE_PUSHED
23
24# The head branch was restored by the actor.
25HEAD_REF_RESTORED
26
27# A label was added to the issue.
28LABELED
29
30# The issue was locked by the actor.
31LOCKED
32
33# The pull request or issue was mentioned by the actor.
34MENTIONED
35
36# The issue was merged by the actor.
37MERGED
38
39# The issue had a milestone added to it.
40MILESTONED
41
42# The issue was referenced from a commit message.
43REFERENCED
44
45# The issue's title was changed.
46RENAMED
47
48# The issue was reopened by the actor.
49REOPENED
50
51# The actor requested review from the subject.
52REVIEW_REQUESTED
53
54# The actor removed the review request for the subject.
55REVIEW_REQUEST_REMOVED
56
57# The review was dismissed by the actor.
58REVIEW_DISMISSED
59
60# The pull request or issue was subscribed to by the actor.
61SUBSCRIBED
62
63# The issue was unassigned to the actor.
64UNASSIGNED
65
66# A label was removed from the issue.
67UNLABELED
68
69# The issue was unlocked by the actor.
70UNLOCKED
71
72# The pull request or issue was unsubscribed from by the actor.
73UNSUBSCRIBED
74}

link Required by