We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0198cc commit 3e07205Copy full SHA for 3e07205
src/helpers.ts
@@ -7,6 +7,8 @@ export const frontmatterSchema = z
7
assignees: z.union([z.array(z.string()), z.string()]).optional(),
8
labels: z.union([z.array(z.string()), z.string()]).optional(),
9
milestone: z.union([z.string(), z.number()]).optional(),
10
+ name: z.string().optional(),
11
+ about: z.string().optional(),
12
})
13
.strict();
14
0 commit comments