GitHubMilestoneHasNoOpenIssuesTask outputs to a file
Rather than having the task fail if the milestone is not due today, it now
outputs to a file true or false. This allows the pipeline to determine
if it should continue or not without causing a failure.
Closes gh-11158
thrownewIllegalStateException("The repository "+this.repository+" has open issues for milestone with the title "+this.milestoneTitle+" and number "+milestoneNumber);
System.out.println("The repository "+this.repository+" has open issues for milestone with the title "+this.milestoneTitle+" and number "+milestoneNumber);
}
else{
System.out.println("The repository "+this.repository+" has no open issues for milestone with the title "+this.milestoneTitle+" and number "+milestoneNumber);
@ -43,6 +43,7 @@ public class GitHubMilestonePlugin implements Plugin<Project> {
@@ -43,6 +43,7 @@ public class GitHubMilestonePlugin implements Plugin<Project> {