You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Post comment with reviewer names and score summary
82
+
const reviewersList = reviewers.join(", ");
64
83
await github.rest.issues.createComment({
65
84
owner,
66
85
repo,
67
86
issue_number,
68
-
body: `🧮 Average score from ${numScores} reviewers: **${average.toFixed(2)}**. Final decision: **${finalLabel.toUpperCase()}**.`
87
+
body: `🧮 Average score from ${numScores} reviewer(s): **${average.toFixed(2)}**\n👥 Reviewed by: ${reviewersList}\n📌 Final decision: **${finalLabel.toUpperCase()}**`
0 commit comments