Skip to content

Commit 8220249

Browse files
Updated action, updated acceptance tests
1 parent 6cb7258 commit 8220249

File tree

8 files changed

+143
-8
lines changed

8 files changed

+143
-8
lines changed

.github/workflows/post-release-workflow.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: actions/checkout@v4
1717

1818
- name: Run Post Release Tasks
19-
uses: marcingrzejszczak/micrometer-release@main
19+
uses: micrometer-metrics/micrometer-github-workflows@main
2020
with:
2121
gh_token: ${{ secrets.GITHUB_TOKEN }}
2222
previous_ref_name: ${{ github.event.inputs.previous_ref_name }}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Release Train (for a single project)
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
train_versions:
7+
description: "Comma separated list of versions (e.g. 1.13.2,1.14.8,1.15.9-M2)"
8+
required: true
9+
artifact_to_check:
10+
description: "What's the artifact id (io.micrometer:artifactId) to check in Maven Central if the sync after the release was successful (e.g. micrometer-bom)"
11+
required: true
12+
13+
jobs:
14+
post_release:
15+
runs-on: ubuntu-latest
16+
17+
steps:
18+
- name: Checkout code
19+
uses: actions/checkout@v4
20+
21+
- name: Run Post Release Tasks
22+
uses: micrometer-metrics/micrometer-github-workflows@main
23+
with:
24+
gh_token: ${{ secrets.GITHUB_TOKEN }}
25+
spring_release_gchat_webhook_url: ${{ secrets.SPRING_RELEASE_GCHAT_WEBHOOK_URL }}
26+
bluesky_handle: ${{ secrets.BLUESKY_HANDLE }}
27+
bluesky_password: ${{ secrets.BLUESKY_PASSWORD }}
28+
train_versions: ${{ github.event.inputs.train_versions }}
29+
artifact_to_check: ${{ github.event.inputs.artifact_to_check }}

action.yml

+13-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
name: "Micrometer Post Release Docker Action"
2-
description: "A GitHub Action that runs a Java application using Docker to do post release tasks"
1+
name: "Micrometer Release Docker Action"
2+
description: "A GitHub Action that runs a Java application using Docker to do release / post release tasks"
33
author: "micrometer.io team"
44

55
inputs:
@@ -15,7 +15,15 @@ inputs:
1515
required: false
1616
default: ${{ github.repository }}
1717
previous_ref_name:
18-
description: "Previous release version in this train (e.g., v1.14.8)"
18+
description: "[SINGLE PROJECT] Previous release version in this train (e.g.v1.14.8)"
19+
required: false
20+
default: ""
21+
train_versions:
22+
description: "[TRAIN] Comma separated list of versions (e.g. 1.13.2,1.14.8,1.15.9)"
23+
required: false
24+
default: ""
25+
artifact_to_check:
26+
description: "[TRAIN] What's the artifact id (io.micrometer:artifactId) to check in Maven Central if the sync after the release was successful (e.g. micrometer-bom)"
1927
required: false
2028
default: ""
2129
spring_release_gchat_webhook_url:
@@ -41,6 +49,8 @@ runs:
4149
SPRING_RELEASE_GCHAT_WEBHOOK_URL: ${{ inputs.spring_release_gchat_webhook_url }}
4250
BLUESKY_HANDLE: ${{ inputs.bluesky_handle }}
4351
BLUESKY_PASSWORD: ${{ inputs.bluesky_password }}
52+
TRAIN_VERSIONS: ${{ inputs.train_versions }}
53+
ARTIFACT_TO_CHECK: ${{ inputs.artifact_to_check }}
4454

4555
branding:
4656
icon: "activity"

src/main/java/io/micrometer/release/single/ReleaseDateCalculator.java src/main/java/io/micrometer/release/common/ReleaseDateCalculator.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package io.micrometer.release.single;
16+
package io.micrometer.release.common;
1717

1818
import java.time.LocalDate;
1919

2020
/**
2121
* Always second Monday of the next month
2222
*/
23-
class ReleaseDateCalculator {
23+
public class ReleaseDateCalculator {
2424

25-
static LocalDate calculateDueDate(LocalDate now) {
25+
public static LocalDate calculateDueDate(LocalDate now) {
2626
// Go to first day of the next month
2727
LocalDate nextMonth = now.withDayOfMonth(1).plusMonths(1);
2828

src/main/java/io/micrometer/release/single/MilestoneIssueReassigner.java

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
package io.micrometer.release.single;
1717

1818
import io.micrometer.release.common.ProcessRunner;
19+
import io.micrometer.release.common.ReleaseDateCalculator;
1920
import io.micrometer.release.single.MilestoneMigrator.Milestone;
2021
import org.slf4j.Logger;
2122
import org.slf4j.LoggerFactory;

src/test/java/io/micrometer/release/single/ReleaseDateCalculatorTests.java src/test/java/io/micrometer/release/common/ReleaseDateCalculatorTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package io.micrometer.release.single;
16+
package io.micrometer.release.common;
1717

1818
import org.junit.jupiter.params.ParameterizedTest;
1919
import org.junit.jupiter.params.provider.CsvSource;

src/test/java/io/micrometer/release/single/GithubActionsAcceptanceTests.java

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717

1818
import com.fasterxml.jackson.core.JsonProcessingException;
1919
import io.micrometer.release.common.GithubActions;
20+
import io.micrometer.release.common.ReleaseDateCalculator;
2021
import org.junit.jupiter.api.BeforeAll;
2122
import org.junit.jupiter.api.Test;
2223

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
/*
2+
* Copyright 2025 Broadcom.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* https://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
package io.micrometer.release.train;
17+
18+
import com.fasterxml.jackson.core.JsonProcessingException;
19+
import io.micrometer.release.common.GithubActions;
20+
import io.micrometer.release.common.ReleaseDateCalculator;
21+
import org.junit.jupiter.api.BeforeAll;
22+
import org.junit.jupiter.api.Test;
23+
import org.junit.jupiter.params.ParameterizedTest;
24+
import org.junit.jupiter.params.provider.CsvSource;
25+
import org.junit.jupiter.params.provider.ValueSource;
26+
27+
import java.time.LocalDate;
28+
import java.util.List;
29+
30+
import static org.assertj.core.api.Assertions.assertThat;
31+
32+
class GithubActionsAcceptanceTests implements GithubActions {
33+
34+
@BeforeAll
35+
static void should_go_through_whole_flow() {
36+
runTrainPostReleaseWorkflow();
37+
}
38+
39+
@Test
40+
void should_verify_release_notes_content() throws JsonProcessingException {
41+
Release release = githubClient.getRelease("v0.1.1");
42+
43+
assertThat(release.body()).isEqualToIgnoringWhitespace("""
44+
TODO
45+
""");
46+
}
47+
48+
@ParameterizedTest
49+
@ValueSource(strings = { "0.1.1", "0.2.0-M2", "1.0.0-RC1" })
50+
void should_verify_current_milestone(String version) throws JsonProcessingException {
51+
String generic = version.substring(0, version.lastIndexOf(".")) + ".x";
52+
Milestone milestone = githubClient.getMilestoneByTitle(version);
53+
54+
assertThat(milestone.state()).isEqualTo("closed");
55+
List<Issue> issues = githubClient.getIssuesForMilestone(milestone.number());
56+
assertThat(issues).extracting(Issue::state).containsOnly("closed");
57+
assertThat(issues).extracting(Issue::title)
58+
.containsOnly("Closed issue in generic " + generic, "Closed bug in concrete " + version,
59+
"Closed bug in generic " + generic, "Closed enhancement in generic " + generic);
60+
}
61+
62+
@ParameterizedTest
63+
@CsvSource(textBlock = """
64+
0.1.2,0.1.1
65+
0.2.0-RC1,0.2.0-M2
66+
1.0.0,1.0.0-RC1
67+
""")
68+
void should_verify_next_milestone(String next, String previous) throws JsonProcessingException {
69+
Milestone milestone = githubClient.getMilestoneByTitle(next);
70+
71+
assertThat(milestone.state()).isEqualTo("open");
72+
assertThat(milestone.dueOn()).isEqualTo(ReleaseDateCalculator.calculateDueDate(LocalDate.now()));
73+
List<Issue> issues = githubClient.getIssuesForMilestone(milestone.number());
74+
assertThat(issues).extracting(Issue::state).containsOnly("open");
75+
assertThat(issues).extracting(Issue::title).containsOnly("Open issue in concrete " + previous);
76+
}
77+
78+
@ParameterizedTest
79+
@ValueSource(strings = { "0.1.x", "0.2.x", "1.0.x" })
80+
void should_verify_generic_milestone(String branch) throws JsonProcessingException {
81+
Milestone milestone = githubClient.getMilestoneByTitle(branch);
82+
83+
List<Issue> closedIssues = githubClient.getClosedIssuesForMilestone(milestone.number());
84+
assertThat(closedIssues).isEmpty();
85+
}
86+
87+
private static void runTrainPostReleaseWorkflow() {
88+
log.info("Running train release from main");
89+
GithubActions.runWorkflow("release-train-workflow.yml",
90+
List.of("gh", "workflow", "run", "release-train-workflow.yml", "--ref", "main", "-f",
91+
"train_versions=0.1.1,0.2.0-M2,1.0.0-RC1", "-f", "artifact_to_check=micrometer-bom"));
92+
}
93+
94+
}

0 commit comments

Comments
 (0)