Skip to content

Commit

Permalink
LRCI-3713 add logic to stop stable from comparing to upstream in pull…
Browse files Browse the repository at this point in the history
… requests
  • Loading branch information
CharlotteFrancis authored and brianchandotcom committed Aug 30, 2023
1 parent 5f71db9 commit 1b2728c
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@ public PullRequestPortalTopLevelBuild(
super(url, topLevelBuild);

setCompareToUpstream(true);

String testSuiteName = getTestSuiteName();

if (testSuiteName.equals("stable")) {
setCompareToUpstream(false);
}
}

public boolean bypassCITestRelevant() {
Expand Down

0 comments on commit 1b2728c

Please sign in to comment.