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