Skip to content

Commit 6c900f8

Browse files
More logging
1 parent 194745f commit 6c900f8

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

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

+7-2
Original file line numberDiff line numberDiff line change
@@ -227,12 +227,17 @@ private void waitForDependabotJobsToFinish(String orgRepository, String githubSe
227227
log.info("No dependabot jobs found");
228228
}
229229
else {
230-
log.info("Found {} Dependabot jobs with statuses {}", prs.size(), prs);
230+
log.info("Found {} Dependabot jobs", prs.size());
231231
boolean allCompleted = prs.stream().allMatch(pr -> pr.status().equalsIgnoreCase("completed"));
232232
if (allCompleted) {
233233
log.info("All dependabot jobs completed");
234234
return;
235235
}
236+
Set<Pr> notCompleted = prs.stream()
237+
.filter(pr -> !pr.status.equalsIgnoreCase("completed"))
238+
.collect(Collectors.toSet());
239+
log.info("Found {} not completed jobs\n", notCompleted.size());
240+
notCompleted.forEach(pr -> log.info("\t{}", pr));
236241
}
237242
log.info("Not all Dependabot jobs processed, will try again...");
238243
sleep(waitBetweenRuns);
@@ -251,7 +256,7 @@ List<String> curlRuns(String orgRepository, String githubServerTime, String id)
251256
+ "&workflow_id=" + id);
252257
}
253258

254-
record Pr(String id, String name, String url, String status) {
259+
record Pr(String id, String name, String status) {
255260

256261
}
257262

0 commit comments

Comments
 (0)