chore: publish from staged

This commit is contained in:
github-actions[bot]
2026-06-11 05:18:02 +00:00
parent a94b92dfb2
commit 8e752b59fd
4 changed files with 12 additions and 12 deletions
+5 -5
View File
@@ -492,7 +492,7 @@ function buildQualityGatesCommentSection(qualityResult) {
function getIntakeStateFromQualityResult(baseResult, qualityResult) {
if (!baseResult.valid) {
return "rejected";
return "requires-submitter-fixes";
}
if (qualityResult.failure_class === "submitter_fixes") {
@@ -647,10 +647,10 @@ export async function evaluateExternalPluginIssue({ issue, token, runId, owner,
].join("\n")
: [
marker,
"## External plugin intake failed",
"## ⚠️ External plugin intake requires submitter fixes",
"",
"This submission did not pass automated intake validation, so the issue has been closed.",
`Edit the issue form to address the fixes below, then have the issue author or a maintainer comment \`${RERUN_INTAKE_COMMAND}\` to re-run intake for this closed submission.`,
"This submission did not pass automated intake validation and cannot move to maintainer review yet.",
`Edit the issue form to address the fixes below. Intake reruns automatically when the issue is edited, or the issue author/maintainer can comment \`${RERUN_INTAKE_COMMAND}\` to re-run on demand.`,
"",
"### Required fixes",
"",
@@ -663,7 +663,7 @@ export async function evaluateExternalPluginIssue({ issue, token, runId, owner,
return {
valid,
intakeState: valid ? "ready-for-review" : "rejected",
intakeState: valid ? "ready-for-review" : "requires-submitter-fixes",
markerPresent: parsed.markerPresent,
errors: dedupedErrors,
warnings: dedupedWarnings,