@@ -55,30 +55,38 @@ static void resetsMilestones() throws InterruptedException {
55
55
56
56
private static void resetMilestones () throws InterruptedException {
57
57
log .info ("Resetting repository state" );
58
- processRunner .run ("gh" , "workflow" , "run" , "reset-milestones.yml" );
59
- waitForWorkflowCompletion ("reset-milestones.yml" );
58
+ runAndWaitResetMiestones ("0.1.x" );
59
+ runAndWaitResetMiestones ("0.2.x" );
60
+ runAndWaitResetMiestones ("main" );
60
61
}
61
62
62
- static void runWorkflow (String workflowName , List <String > commands ) {
63
+ private static void runAndWaitResetMiestones (String branch ) throws InterruptedException {
64
+ log .info ("Resetting branch {}" , branch );
65
+ processRunner .run ("gh" , "workflow" , "run" , "reset-milestones.yml" , "-r" , branch );
66
+ waitForWorkflowCompletion ("reset-milestones.yml" , branch );
67
+ }
68
+
69
+ static void runWorkflow (String workflowName , String branch , List <String > commands ) {
63
70
log .info ("Running workflow with name [{}]" , workflowName );
64
71
processRunner .run (commands );
65
72
try {
66
- waitForWorkflowCompletion (workflowName );
73
+ waitForWorkflowCompletion (workflowName , branch );
67
74
}
68
75
catch (InterruptedException e ) {
69
76
throw new IllegalStateException (e );
70
77
}
71
78
}
72
79
73
- private static void waitForWorkflowCompletion (String workflowFile ) throws InterruptedException {
80
+ private static void waitForWorkflowCompletion (String workflowFile , String branch ) throws InterruptedException {
74
81
log .info ("Waiting for workflow [{}] scheduling..." , workflowFile );
75
82
Thread .sleep (10_000 ); // Wait for the action to schedule
76
83
log .info ("Waiting for workflow [{}] completion..." , workflowFile );
77
84
boolean completed = false ;
78
85
int maxAttempts = 30 ;
79
86
int attempts = 0 ;
80
87
while (!completed && attempts < maxAttempts ) { // 5 minute timeout
81
- List <String > status = processRunner .run ("gh" , "run" , "list" , "--workflow" , workflowFile , "--limit" , "1" );
88
+ List <String > status = processRunner .run ("gh" , "run" , "list" , "--workflow" , workflowFile , "--branch" , branch ,
89
+ "--limit" , "1" );
82
90
log .info ("Workflow [{}] not completed yet - attempt [{}]/[{}]" , workflowFile , attempts + 1 , maxAttempts );
83
91
completed = status .stream ().anyMatch (line -> line .contains ("completed" ));
84
92
if (!completed ) {
0 commit comments