Skip to content

Commit 976a098

Browse files
Increasing timeout
1 parent 8caa3fd commit 976a098

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test/java/io/micrometer/release/common/GithubActions.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -82,15 +82,15 @@ private static void waitForWorkflowCompletion(String workflowFile, String branch
8282
Thread.sleep(10_000); // Wait for the action to schedule
8383
log.info("Waiting for workflow [{}] completion...", workflowFile);
8484
boolean completed = false;
85-
int maxAttempts = 30;
85+
int maxAttempts = 50;
8686
int attempts = 0;
87-
while (!completed && attempts < maxAttempts) { // 5 minute timeout
87+
while (!completed && attempts < maxAttempts) {
8888
List<String> status = processRunner.run("gh", "run", "list", "--workflow", workflowFile, "--branch", branch,
8989
"--limit", "1");
9090
log.info("Workflow [{}] not completed yet - attempt [{}]/[{}]", workflowFile, attempts + 1, maxAttempts);
9191
completed = status.stream().anyMatch(line -> line.contains("completed"));
9292
if (!completed) {
93-
Thread.sleep(10_000);
93+
Thread.sleep(30 * 1000);
9494
attempts++;
9595
}
9696
}

0 commit comments

Comments
 (0)