Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 8640a85

Browse filesBrowse files
authored
Merge branch 'main' into 01-signed-commits-enum
2 parents aedb71f + 1cb9e66 commit 8640a85
Copy full SHA for 8640a85

File tree

Expand file treeCollapse file tree

3 files changed

+5
-2
lines changed
Filter options
Expand file treeCollapse file tree

3 files changed

+5
-2
lines changed

‎pom.xml

Copy file name to clipboardExpand all lines: pom.xml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -621,7 +621,7 @@
621621
<dependency>
622622
<groupId>com.github.tomakehurst</groupId>
623623
<artifactId>wiremock-jre8-standalone</artifactId>
624-
<version>2.35.0</version>
624+
<version>2.35.1</version>
625625
<scope>test</scope>
626626
</dependency>
627627
<dependency>

‎src/main/java/org/kohsuke/github/GHEvent.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHEvent.java
+3Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,9 @@ public enum GHEvent {
102102
/** The merge queue entry. */
103103
MERGE_QUEUE_ENTRY,
104104

105+
/** The merge group entry. */
106+
MERGE_GROUP,
107+
105108
/** The meta. */
106109
META,
107110

‎src/test/java/org/kohsuke/github/EnumTest.java

Copy file name to clipboardExpand all lines: src/test/java/org/kohsuke/github/EnumTest.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public void touchEnums() {
3232

3333
assertThat(GHDirection.values().length, equalTo(2));
3434

35-
assertThat(GHEvent.values().length, equalTo(64));
35+
assertThat(GHEvent.values().length, equalTo(65));
3636
assertThat(GHEvent.ALL.symbol(), equalTo("*"));
3737
assertThat(GHEvent.PULL_REQUEST.symbol(), equalTo(GHEvent.PULL_REQUEST.toString().toLowerCase()));
3838

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.