public override async Task ExecuteAsync(IOperationExecutionContext context)
 {
     var gitlab = new GitLabClient(this.ApiUrl, this.UserName, this.Password, this.GroupName);
     await gitlab.CreateCommentAsync(this.IssueId, this.ProjectName, this.Body, context.CancellationToken).ConfigureAwait(false);
 }