private static Task SetTag(this IIssuesService issuesService, Issue issue, string tagForHotIssues) { return(issuesService.ApplyCommand(issue.Id, $"tag {tagForHotIssues}", disableNotifications: true)); }
private static Task RemoveTag(this IIssuesService issuesService, Issue issue, string tagForHotIssues, bool disableNotifications = true) { return(issuesService.ApplyCommand(issue.Id, $"remove tag {tagForHotIssues}", disableNotifications: disableNotifications)); }