chore: publish from main

This commit is contained in:
github-actions[bot]
2026-07-16 06:58:30 +00:00
parent f7645b8fc4
commit 5051426463
5 changed files with 180 additions and 2 deletions
+8
View File
@@ -3,6 +3,10 @@ export const EXTERNAL_PLUGIN_INTAKE_LABELS = Object.freeze({
color: "FEF2C0",
description: "Public external plugin submission",
},
"external-plugin-canvas": {
color: "1D76DB",
description: "External plugin submission includes a canvas extension",
},
"awaiting-review": {
color: "FBCA04",
description: "Submission is waiting for automated intake validation",
@@ -27,6 +31,7 @@ export const EXTERNAL_PLUGIN_INTAKE_LABELS = Object.freeze({
const EXTERNAL_PLUGIN_INTAKE_SYNC_LABELS = Object.freeze([
"external-plugin",
"external-plugin-canvas",
"awaiting-review",
"ready-for-review",
"requires-submitter-fixes",
@@ -129,6 +134,9 @@ export async function applyExternalPluginIntakeEvaluation({
rejected: new Set(["external-plugin", "rejected"]),
};
const desiredLabels = desiredLabelsByState[state] ?? desiredLabelsByState.rejected;
if (evaluation.isCanvasPlugin) {
desiredLabels.add("external-plugin-canvas");
}
await syncExternalPluginIntakeLabels({
github,