File tree 1 file changed +5
-8
lines changed
packages/client-github/src
1 file changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -5,19 +5,16 @@ export const OODASchema = z.object({
5
5
"CREATE_ISSUE",
6
6
"NOTHING",
7
7
"ADD_COMMENT_TO_ISSUE",
8
- // "COMMENT_PR",
9
- "INITIALIZE_REPOSITORY",
10
- // "CREATE_COMMIT",
11
- "CREATE_MEMORIES_FROM_FILES",
12
- // "CREATE_PULL_REQUEST",
13
- // "MODIFY_ISSUE",
8
+ "ADD_COMMENT_TO_PR",
9
+ // "INITIALIZE_REPOSITORY",
10
+ // "CREATE_MEMORIES_FROM_FILES",
14
11
// "IDEATE",
15
12
]),
16
13
owner: z.string().optional(),
17
14
repo: z.string().optional(),
18
15
path: z.string().optional(),
19
16
branch: z.string().optional(),
20
- title: z.string().min(1, "Pull request title is required"). optional(),
17
+ title: z.string().optional(),
21
18
description: z.string().optional(),
22
19
files: z.array(z.object({ path: z.string(), content: z.string() })).optional(),
23
20
message: z.string().optional(),
@@ -32,7 +29,7 @@ export interface OODAContent {
32
29
repo?: string;
33
30
path?: string;
34
31
branch?: string;
35
- title: string;
32
+ title? : string;
36
33
description?: string;
37
34
files: { path: string; content: string }[];
38
35
message?: string;
You can’t perform that action at this time.
0 commit comments