Permalink
1 comment
on commit
sign in to comment.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
1129: [REDO] The mlbridge bot occasionally posts the same comments tw…
…ice on Github Reviewed-by: kcr
- Loading branch information
Showing
with
20 additions
and 29 deletions.
- +1 −4 bots/bridgekeeper/src/main/java/org/openjdk/skara/bots/bridgekeeper/PullRequestCloserBot.java
- +1 −4 bots/bridgekeeper/src/main/java/org/openjdk/skara/bots/bridgekeeper/PullRequestPrunerBot.java
- +1 −4 bots/mlbridge/src/main/java/org/openjdk/skara/bots/mlbridge/ArchiveWorkItem.java
- +1 −1 bots/mlbridge/src/main/java/org/openjdk/skara/bots/mlbridge/CommentPosterWorkItem.java
- +1 −4 bots/notify/src/main/java/org/openjdk/skara/bots/notify/PullRequestWorkItem.java
- +1 −4 bots/pr/src/main/java/org/openjdk/skara/bots/pr/PullRequestWorkItem.java
- +1 −4 bots/submit/src/main/java/org/openjdk/skara/bots/submit/SubmitBotWorkItem.java
- +2 −2 bots/tester/src/main/java/org/openjdk/skara/bots/tester/TestUpdateNeededWorkItem.java
- +2 −2 bots/tester/src/main/java/org/openjdk/skara/bots/tester/TestWorkItem.java
- +9 −0 forge/src/main/java/org/openjdk/skara/forge/PullRequest.java
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -70,10 +70,7 @@ public boolean concurrentWith(WorkItem other) { | ||
} | ||
return false; | ||
} | ||
if (!pr.isSame(otherArchiveItem.pr)) { | ||
return true; | ||
} | ||
return false; | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -54,10 +54,10 @@ public boolean concurrentWith(WorkItem other) { | ||
return true; | ||
} | ||
var o = (TestUpdateNeededWorkItem) other; | ||
if (!pr.isSame(o.pr)) { | ||
return true; | ||
} | ||
return false; | ||
} | ||
|
||
@Override | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -71,10 +71,10 @@ public boolean concurrentWith(WorkItem other) { | ||
return true; | ||
} | ||
var o = (TestWorkItem) other; | ||
if (!pr.isSame(o.pr)) { | ||
return true; | ||
} | ||
return false; | ||
} | ||
|
||
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
273d83d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Review
Issues