Skip to content

Commit 98c512b

Browse files
Pulling before pushing - that's what you should do
1 parent 15a3237 commit 98c512b

File tree

4 files changed

+89
-1
lines changed

4 files changed

+89
-1
lines changed

src/main/java/io/micrometer/release/train/DependencyVerifier.java

+1
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,7 @@ private void triggerDependabotCheck(String orgRepository, File clonedRepo) {
180180
"https://x-access-token:" + githubToken + "@github.com/" + orgRepository + ".git");
181181
branchProcessRunner.run("git", "config", "user.name", "GitHub Action");
182182
branchProcessRunner.run("git", "config", "user.email", "[email protected]");
183+
branchProcessRunner.run("git", "pull");
183184
branchProcessRunner.run("git", "add", filePath);
184185
branchProcessRunner.run("git", "commit", "-m",
185186
"ci: " + (hasComment ? "Remove" : "Add") + " dependabot trigger comment");

src/main/java/io/micrometer/release/train/FutureUtility.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class FutureUtility {
2222
static void waitForTasksToComplete(List<CompletableFuture<Void>> releaseTasks) {
2323
CompletableFuture
2424
.allOf(releaseTasks.stream()
25-
.map(future -> future.orTimeout(20, TimeUnit.MINUTES))
25+
.map(future -> future.orTimeout(30, TimeUnit.MINUTES))
2626
.toList()
2727
.toArray(new CompletableFuture[0]))
2828
.join();
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
/**
2+
* Copyright 2025 the original author or authors.
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 java.util.List;
19+
20+
public record TrainOptions() {
21+
22+
enum ProjectName {
23+
24+
CONTEXT_PROPAGATION("context-propagation"), MICROMETER("micrometer-bom"), TRACING("micrometer-tracing-bom"),
25+
DOC_GEN("micrometer-docs-generator");
26+
27+
private final String groupId = "io.micrometer";
28+
29+
private final String artifactId;
30+
31+
ProjectName(String artifactId) {
32+
this.artifactId = artifactId;
33+
}
34+
35+
public String getGroupId() {
36+
return groupId;
37+
}
38+
39+
public String getArtifactId() {
40+
return artifactId;
41+
}
42+
43+
}
44+
45+
public record Project(ProjectName projectName, List<Dependency> dependencies) {
46+
47+
public static Project contextPropagation() {
48+
return new Project(ProjectName.CONTEXT_PROPAGATION, List.of());
49+
}
50+
51+
public static Project micrometer(String contextPropagationVersion) {
52+
return new Project(ProjectName.MICROMETER, List
53+
.of(new Dependency(ProjectName.CONTEXT_PROPAGATION, versionOrNotSet(contextPropagationVersion))));
54+
}
55+
56+
public static Project tracing(String contextPropagationVersion, String micrometerVersion) {
57+
return new Project(ProjectName.TRACING,
58+
List.of(new Dependency(ProjectName.CONTEXT_PROPAGATION, versionOrNotSet(contextPropagationVersion)),
59+
new Dependency(ProjectName.MICROMETER, versionOrNotSet(micrometerVersion))));
60+
}
61+
62+
public static Project dosGen(String micrometerVersion, String tracingVersion) {
63+
return new Project(ProjectName.DOC_GEN,
64+
List.of(new Dependency(ProjectName.MICROMETER, versionOrNotSet(micrometerVersion)),
65+
new Dependency(ProjectName.TRACING, versionOrNotSet(tracingVersion))));
66+
}
67+
68+
private static String versionOrNotSet(String contextPropagationVersion) {
69+
return contextPropagationVersion != null ? contextPropagationVersion : Dependency.NO_VERSION_SET;
70+
}
71+
72+
public String name() {
73+
return projectName().name();
74+
}
75+
}
76+
77+
public record Dependency(ProjectName projectName, String version) {
78+
79+
public static final String NO_VERSION_SET = "";
80+
81+
public boolean isVersionSet() {
82+
return NO_VERSION_SET.equals(version);
83+
}
84+
}
85+
86+
}

src/test/java/io/micrometer/release/train/DependencyVerifierTests.java

+1
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ void should_receive_updated_dependabot_status() {
115115
"https://x-access-token:[email protected]/micrometer-metrics/micrometer.git");
116116
inOrder.verify(processRunner).run("git", "config", "user.name", "GitHub Action");
117117
inOrder.verify(processRunner).run("git", "config", "user.email", "[email protected]");
118+
inOrder.verify(processRunner).run("git", "pull");
118119
inOrder.verify(processRunner).run("git", "add", ".github/dependabot.yml");
119120
inOrder.verify(processRunner)
120121
.run(eq("git"), eq("commit"), eq("-m"), matches("ci: (Add|Remove) dependabot trigger comment"));

0 commit comments

Comments
 (0)