@@ -48,8 +48,8 @@ public interface GithubActions {
48
48
static void resetsMilestones () throws InterruptedException {
49
49
assertThat (System .getenv ("GH_TOKEN" )).as ("GH_TOKEN env var must be set!" ).isNotBlank ();
50
50
log .info (
51
- "This test requires GH connection and will operate on [{}] repository. It's quite slow because it runs GH actions so please be patient..." ,
52
- REPO );
51
+ "This test requires GH connection and will operate on [{}] repository. It's quite slow because it runs GH actions so please be patient..." ,
52
+ REPO );
53
53
resetMilestones ();
54
54
}
55
55
@@ -64,7 +64,8 @@ static void runWorkflow(String workflowName, List<String> commands) {
64
64
processRunner .run (commands );
65
65
try {
66
66
waitForWorkflowCompletion (workflowName );
67
- } catch (InterruptedException e ) {
67
+ }
68
+ catch (InterruptedException e ) {
68
69
throw new IllegalStateException (e );
69
70
}
70
71
}
@@ -77,19 +78,16 @@ private static void waitForWorkflowCompletion(String workflowFile) throws Interr
77
78
int maxAttempts = 30 ;
78
79
int attempts = 0 ;
79
80
while (!completed && attempts < maxAttempts ) { // 5 minute timeout
80
- List <String > status = processRunner .run ("gh" , "run" , "list" , "--workflow" , workflowFile ,
81
- "--limit" , "1" );
82
- log .info ("Workflow [{}] not completed yet - attempt [{}]/[{}]" , workflowFile ,
83
- attempts + 1 , maxAttempts );
81
+ List <String > status = processRunner .run ("gh" , "run" , "list" , "--workflow" , workflowFile , "--limit" , "1" );
82
+ log .info ("Workflow [{}] not completed yet - attempt [{}]/[{}]" , workflowFile , attempts + 1 , maxAttempts );
84
83
completed = status .stream ().anyMatch (line -> line .contains ("completed" ));
85
84
if (!completed ) {
86
85
Thread .sleep (10_000 );
87
86
attempts ++;
88
87
}
89
88
}
90
89
if (!completed ) {
91
- throw new RuntimeException (
92
- "Workflow " + workflowFile + " did not complete within timeout" );
90
+ throw new RuntimeException ("Workflow " + workflowFile + " did not complete within timeout" );
93
91
}
94
92
log .info ("Workflow [{}] completed successfully!" , workflowFile );
95
93
}
@@ -117,35 +115,41 @@ class GithubClient {
117
115
GithubClient (String token , String repo ) {
118
116
this .repo = repo ;
119
117
this .processRunner = new ProcessRunner (repo ).withEnvVars (
120
- Map .of ("JAVA_HOME" , JavaHomeFinder .findJavaHomePath (), "GH_TOKEN" ,
121
- token != null ? token : "" ));
118
+ Map .of ("JAVA_HOME" , JavaHomeFinder .findJavaHomePath (), "GH_TOKEN" , token != null ? token : "" ));
122
119
this .objectMapper = new ObjectMapper ().registerModule (new JavaTimeModule ())
123
120
.configure (DeserializationFeature .FAIL_ON_UNKNOWN_PROPERTIES , false );
124
121
}
125
122
126
123
public Release getRelease (String tag ) throws JsonProcessingException {
127
124
String output = String .join ("\n " ,
128
- processRunner .run ("gh" , "api" , "/repos/" + repo + "/releases/tags/" + tag ));
125
+ processRunner .run ("gh" , "api" , "/repos/" + repo + "/releases/tags/" + tag ));
129
126
return parseReleaseFromJson (output );
130
127
}
131
128
129
+ public void createReleaseAndTag (String tagName ) {
130
+ log .info ("Creating tag and release [{}]" , tagName );
131
+
132
+ processRunner .run ("gh" , "release" , "create" , tagName , "--title" , tagName .replace ("v" , "" ), "--notes" ,
133
+ "Release " + tagName , "--target" , "main" );
134
+
135
+ log .info ("Successfully created tag and release [{}]" , tagName );
136
+ }
137
+
132
138
public Milestone getMilestoneByTitle (String title ) throws JsonProcessingException {
133
139
String output = String .join ("\n " ,
134
- processRunner .run ("gh" , "api" , "/repos/" + repo + "/milestones" ));
140
+ processRunner .run ("gh" , "api" , "/repos/" + repo + "/milestones?state=all " ));
135
141
return parseMilestoneFromJson (output , title );
136
142
}
137
143
138
- public List <Issue > getIssuesForMilestone (int milestoneNumber )
139
- throws JsonProcessingException {
144
+ public List <Issue > getIssuesForMilestone (int milestoneNumber ) throws JsonProcessingException {
140
145
String output = String .join ("\n " , processRunner .run ("gh" , "api" ,
141
- "/repos/" + repo + "/issues?milestone=" + milestoneNumber ));
146
+ "/repos/" + repo + "/issues?milestone=" + milestoneNumber + "&state=all" ));
142
147
return parseIssuesFromJson (output );
143
148
}
144
149
145
- public List <Issue > getClosedIssuesForMilestone (int milestoneNumber )
146
- throws JsonProcessingException {
150
+ public List <Issue > getClosedIssuesForMilestone (int milestoneNumber ) throws JsonProcessingException {
147
151
String output = String .join ("\n " , processRunner .run ("gh" , "api" ,
148
- "/repos/" + repo + "/issues?milestone=" + milestoneNumber + "&state=closed" ));
152
+ "/repos/" + repo + "/issues?milestone=" + milestoneNumber + "&state=closed" ));
149
153
return parseIssuesFromJson (output );
150
154
}
151
155
@@ -154,17 +158,14 @@ private Release parseReleaseFromJson(String json) throws JsonProcessingException
154
158
return new Release (root .get ("body" ).asText ());
155
159
}
156
160
157
- private Milestone parseMilestoneFromJson (String json , String title )
158
- throws JsonProcessingException {
161
+ private Milestone parseMilestoneFromJson (String json , String title ) throws JsonProcessingException {
159
162
JsonNode root = objectMapper .readTree (json );
160
163
for (JsonNode milestone : root ) {
161
164
if (milestone .get ("title" ).asText ().equals (title )) {
162
- return new Milestone (milestone .get ("number" ).asInt (),
163
- milestone .get ("state" ).asText (),
164
- milestone .get ("title" ).asText (),
165
- milestone .get ("due_on" ) != null && !milestone .get ("due_on" ).isNull ()
166
- ? LocalDate .parse (milestone .get ("due_on" ).asText ().substring (0 , 10 ))
167
- : null );
165
+ return new Milestone (milestone .get ("number" ).asInt (), milestone .get ("state" ).asText (),
166
+ milestone .get ("title" ).asText (),
167
+ milestone .get ("due_on" ) != null && !milestone .get ("due_on" ).isNull ()
168
+ ? LocalDate .parse (milestone .get ("due_on" ).asText ().substring (0 , 10 )) : null );
168
169
}
169
170
}
170
171
throw new RuntimeException ("Milestone with title " + title + " not found" );
@@ -175,7 +176,7 @@ private List<Issue> parseIssuesFromJson(String json) throws JsonProcessingExcept
175
176
List <Issue > issues = new ArrayList <>();
176
177
for (JsonNode issue : root ) {
177
178
issues .add (new Issue (issue .get ("number" ).asInt (), issue .get ("state" ).asText (),
178
- issue .get ("title" ).asText ()));
179
+ issue .get ("title" ).asText ()));
179
180
}
180
181
return issues ;
181
182
}
0 commit comments