From c48e4ea0da31a6fbdd8a65a59e09cc7302c37204 Mon Sep 17 00:00:00 2001 From: gentlementlegen Date: Sun, 12 Jan 2025 12:51:26 +0900 Subject: [PATCH] chore: changed defaults for allowedRoles --- src/types/plugin-input.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/plugin-input.ts b/src/types/plugin-input.ts index f9815854..acceab05 100644 --- a/src/types/plugin-input.ts +++ b/src/types/plugin-input.ts @@ -44,7 +44,7 @@ const requiredLabel = T.Object({ allowedRoles: T.Array(roles, { description: "The list of allowed roles to start the task with the given label.", uniqueItems: true, - default: ["collaborator", "contributor"], + default: [], examples: [["collaborator", "contributor"]], }), });