React to accepted rerun intake comments (#1948)

* React to rerun intake comments

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* some whitespace fixes

* more whitespace fixes

---------

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
Aaron Powell
2026-06-08 22:08:41 -07:00
committed by GitHub
parent 881690af58
commit 0adac0dadd
3 changed files with 13 additions and 1 deletions
+5
View File
@@ -460,8 +460,10 @@ function buildMergedIntakeComment(baseResult, qualityResult, runId, owner, repo)
"",
qualitySection,
"",
"",
"### Canonical external.json payload",
"",
"",
"```json",
JSON.stringify(baseResult.plugin ?? {}, null, 2),
"```",
@@ -546,12 +548,15 @@ export async function evaluateExternalPluginIssue({ issue, token, runId, owner,
parsed.plugin.source.sha ? `- **SHA:** ${parsed.plugin.source.sha}` : undefined,
`- **Keywords:** ${normalizedKeywords}`,
"",
"",
"### Canonical external.json payload",
"",
"",
payload,
"",
"### Reviewer notes",
"",
"",
notes,
dedupedWarnings.length > 0
? ["", "### Warnings", "", ...dedupedWarnings.map((warning) => `- ${warning}`)].join("\n")