@oss-autopilot/core 1.15.0 → 1.15.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -248,10 +248,11 @@ export const commands = [
248
248
  outputJson(data);
249
249
  }
250
250
  else {
251
- const { issue, recommendation, reasonsToApprove, reasonsToSkip } = data;
251
+ const { issue, recommendation, reasonsToApprove, reasonsToSkip, grade } = data;
252
252
  console.log(`\nVetting issue: ${issueUrl}\n`);
253
253
  console.log(`[${recommendation.toUpperCase()}] ${issue.repo}#${issue.number}: ${issue.title}`);
254
254
  console.log(` URL: ${issue.url}`);
255
+ console.log(` Success grade: ${grade.letter} (${grade.reason})`);
255
256
  if (reasonsToApprove.length > 0)
256
257
  console.log(` Approve: ${reasonsToApprove.join(', ')}`);
257
258
  if (reasonsToSkip.length > 0)