Skip to content

Commit 3e07205

Browse files
authored
Add more fields to schema
1 parent e0198cc commit 3e07205

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/helpers.ts

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ export const frontmatterSchema = z
77
assignees: z.union([z.array(z.string()), z.string()]).optional(),
88
labels: z.union([z.array(z.string()), z.string()]).optional(),
99
milestone: z.union([z.string(), z.number()]).optional(),
10+
name: z.string().optional(),
11+
about: z.string().optional(),
1012
})
1113
.strict();
1214

0 commit comments

Comments
 (0)