Will file an issue to start.spring.io; fixes gh-153

This commit is contained in:
Marcin Grzejszczak
2019-08-19 14:01:47 +02:00
parent eec48c142b
commit ae9f0a7266

View File

@@ -87,9 +87,9 @@ class GithubIssues {
"You have to pass Github OAuth token for milestone closing to be operational");
// do this only for RELEASE & SR
String releaseVersion = parsedVersion();
if (!(version.isRelease() || version.isServiceRelease())) {
if (version.isSnapshot()) {
log.info(
"Github issue creation will occur only for Release or Service Release versions. Your version is [{}]",
"Github issue creation will occur only for non snapshot versions. Your version is [{}]",
releaseVersion);
return;
}