We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2b045f commit 8ada2eeCopy full SHA for 8ada2ee
pkgs/sdk_triage_bot/lib/triage.dart
@@ -96,16 +96,17 @@ Future<void> triage(
96
// perform changes
97
logger.log('## github comment');
98
logger.log('');
99
- logger.log(summary);
100
- logger.log('');
101
logger.log('labels: $classification');
+ logger.log('');
+ logger.log(summary);
102
103
var comment = '';
104
if (classification.isNotEmpty) {
105
+ comment += '**Labels:** ';
106
comment += classification.map((l) => '`$l`').join(', ');
107
comment += '\n';
108
}
- comment += '> $summary\n';
109
+ comment += '**Summary:** $summary\n';
110
111
// create github comment
112
await githubService.createComment(sdkSlug, issueNumber, comment);
0 commit comments