13
13
* See the License for the specific language governing permissions and
14
14
* limitations under the License.
15
15
*/
16
- package io .micrometer .release ;
16
+ package io .micrometer .release .single ;
17
+
18
+ import io .micrometer .release .common .ProcessRunner ;
17
19
18
20
import java .io .File ;
19
21
20
- class PostReleaseWorkflow {
22
+ public class PostReleaseWorkflow {
21
23
22
24
private final ChangelogGeneratorDownloader changelogGeneratorDownloader ;
23
25
@@ -46,12 +48,17 @@ class PostReleaseWorkflow {
46
48
this .notificationSender = notificationSender ;
47
49
}
48
50
49
- public void run () throws Exception {
50
- String githubOrgRepo = ghOrgRepo (); // micrometer-metrics/tracing
51
- String githubRefName = ghRef (); // v1.3.1
52
- String previousRefName = previousRefName (); // v1.2.5
53
- assertInputs ( githubOrgRepo , githubRefName , previousRefName );
51
+ public PostReleaseWorkflow ( ProcessRunner processRunner ) {
52
+ this ( new ChangelogGeneratorDownloader (), new ChangelogGenerator ( processRunner ),
53
+ new ChangelogFetcher ( processRunner ), new ChangelogProcessor ( processRunner ),
54
+ new ReleaseNotesUpdater ( processRunner ), new MilestoneUpdater ( processRunner ), new NotificationSender ());
55
+ }
54
56
57
+ // micrometer-metrics/tracing
58
+ // v1.3.1
59
+ // v1.2.5 (optional)
60
+ public void run (String githubOrgRepo , String githubRefName , String previousRefName ) {
61
+ assertInputs (githubOrgRepo , githubRefName , previousRefName );
55
62
String githubRepo = githubOrgRepo .contains ("/" ) ? githubOrgRepo .split ("/" )[1 ] : githubOrgRepo ;
56
63
57
64
// Step 1: Close milestone and move issues around
@@ -95,20 +102,13 @@ void assertInputs(String githubOrgRepo, String githubRefName, String previousRef
95
102
}
96
103
}
97
104
98
- String ghRef () {
99
- return System .getenv ("GITHUB_REF_NAME" );
100
- }
101
-
102
- String ghOrgRepo () {
103
- return System .getenv ("GITHUB_REPOSITORY" );
104
- }
105
-
106
- String previousRefName () {
107
- return System .getenv ("PREVIOUS_REF_NAME" );
108
- }
109
-
110
- private File downloadChangelogGenerator () throws Exception {
111
- return changelogGeneratorDownloader .downloadChangelogGenerator ();
105
+ private File downloadChangelogGenerator () {
106
+ try {
107
+ return changelogGeneratorDownloader .downloadChangelogGenerator ();
108
+ }
109
+ catch (Exception e ) {
110
+ throw new IllegalStateException (e );
111
+ }
112
112
}
113
113
114
114
private File generateOldChangelog (String githubRefName , String githubOrgRepo ) {
@@ -119,8 +119,13 @@ private File generateChangelog(String githubRefName, String githubOrgRepo, File
119
119
return changelogGenerator .generateChangelog (githubRefName , githubOrgRepo , jarPath );
120
120
}
121
121
122
- private File processChangelog (File changelog , File oldChangelog ) throws Exception {
123
- return changelogProcessor .processChangelog (changelog , oldChangelog );
122
+ private File processChangelog (File changelog , File oldChangelog ) {
123
+ try {
124
+ return changelogProcessor .processChangelog (changelog , oldChangelog );
125
+ }
126
+ catch (Exception e ) {
127
+ throw new IllegalStateException (e );
128
+ }
124
129
}
125
130
126
131
private void updateReleaseNotes (String refName , File changelog ) {
0 commit comments