From 3e072056cfbd3dd926a37efe088488e48725c520 Mon Sep 17 00:00:00 2001 From: Jason Etcovitch Date: Thu, 22 Dec 2022 22:13:38 -0500 Subject: [PATCH] Add more fields to schema --- src/helpers.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/helpers.ts b/src/helpers.ts index 8444a9c..3e503f5 100644 --- a/src/helpers.ts +++ b/src/helpers.ts @@ -7,6 +7,8 @@ export const frontmatterSchema = z assignees: z.union([z.array(z.string()), z.string()]).optional(), labels: z.union([z.array(z.string()), z.string()]).optional(), milestone: z.union([z.string(), z.number()]).optional(), + name: z.string().optional(), + about: z.string().optional(), }) .strict();