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
+2 -2
View File
@@ -21,7 +21,7 @@ export const EXTERNAL_PLUGIN_INTAKE_LABELS = Object.freeze({
},
rejected: {
color: "B60205",
description: "Submission was rejected or failed intake validation",
description: "Submission was rejected by a maintainer",
},
});
@@ -143,7 +143,7 @@ export async function applyExternalPluginIntakeEvaluation({
issueNumber,
evaluation,
}) {
const state = evaluation.intakeState ?? (evaluation.valid ? "ready-for-review" : "rejected");
const state = evaluation.intakeState ?? (evaluation.valid ? "ready-for-review" : "requires-submitter-fixes");
const desiredLabelsByState = {
"ready-for-review": new Set(["external-plugin", "ready-for-review"]),
"requires-submitter-fixes": new Set(["external-plugin", "requires-submitter-fixes"]),