Skip to content

Commit 73fdd8f

Browse files
authored
fix: merge_requests_template can be null (#79)
1 parent 5c10634 commit 73fdd8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

schemas.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ export const GitLabRepositorySchema = z.object({
310310
container_registry_access_level: z.string().optional(),
311311
issues_enabled: z.boolean().optional(),
312312
merge_requests_enabled: z.boolean().optional(),
313-
merge_requests_template: z.string().optional(),
313+
merge_requests_template: z.string().nullable().optional(),
314314
wiki_enabled: z.boolean().optional(),
315315
jobs_enabled: z.boolean().optional(),
316316
snippets_enabled: z.boolean().optional(),

0 commit comments

Comments
 (0)