Skip to content

Commit

Permalink
Merge pull request #174 from gsmet/register-3.20
Browse files Browse the repository at this point in the history
Register 3.20 as the next LTS
  • Loading branch information
gsmet authored Jan 8, 2025
2 parents 6d9e98d + 9396b81 commit fee15f1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/io/quarkus/bot/release/util/Branches.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
public class Branches {

public static final String MAIN = "main";
private static final List<String> LTS_BRANCHES = List.of("3.15", "3.8", "3.2", "2.13");
private static final List<String> LTS_BRANCHES = List.of("3.20", "3.15", "3.8", "3.2", "2.13");
public static final String BRANCH_2_13 = "2.13";

public static String getPlatformPreparationBranch(ReleaseInformation releaseInformation) {
Expand Down
2 changes: 2 additions & 0 deletions src/test/java/io/quarkus/bot/release/BranchesTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ void testLts() {
assertThat(Branches.isLts("3.4")).isFalse();
assertThat(Branches.isLts("3.8")).isTrue();
assertThat(Branches.isLts("3.9")).isFalse();
assertThat(Branches.isLts("3.15")).isTrue();
assertThat(Branches.isLts("3.20")).isTrue();
}

@Test
Expand Down

0 comments on commit fee15f1

Please sign in to comment.