Skip to content

Commit 6fc9dd4

Browse files
committed
Add support for rocket and eyes reactions.
1 parent 9018d72 commit 6fc9dd4

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

src/main/java/org/kohsuke/github/ReactionContent.java

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,14 @@
1111
* @see GHReaction
1212
*/
1313
public enum ReactionContent {
14-
PLUS_ONE("+1"), MINUS_ONE("-1"), LAUGH("laugh"), CONFUSED("confused"), HEART("heart"), HOORAY("hooray");
14+
PLUS_ONE("+1"),
15+
MINUS_ONE("-1"),
16+
LAUGH("laugh"),
17+
CONFUSED("confused"),
18+
HEART("heart"),
19+
HOORAY("hooray"),
20+
ROCKET("rocket"),
21+
EYES("eyes");
1522

1623
private final String content;
1724

0 commit comments

Comments
 (0)