comment method
Adds comment to the GitHub issue
Implementation
Future<void> comment(String body) async {
final _issService = gh.IssuesService(github);
try {
await _issService.createComment(_slug, id, body);
} catch (e) {
log.shout(e);
rethrow;
}
log.fine('Label was added');
}