-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathinputs.ts
More file actions
36 lines (31 loc) · 877 Bytes
/
inputs.ts
File metadata and controls
36 lines (31 loc) · 877 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/**
* Action input types for the Augment Agent with template support
*/
export interface InputField {
envVar: string;
required: boolean;
transform?: (value: string) => any;
}
export interface ActionInputs {
// Base inputs
augmentSessionAuth?: string | undefined;
augmentApiToken?: string | undefined;
augmentApiUrl?: string | undefined;
githubToken?: string | undefined;
instruction?: string | undefined;
instructionFile?: string | undefined;
model?: string | undefined;
// Template inputs
templateDirectory?: string | undefined;
templateName?: string | undefined;
customContext?: string | undefined;
pullNumber?: number | undefined;
repoName?: string | undefined;
// Additional configuration inputs
rules?: string[] | undefined;
mcpConfigs?: string[] | undefined;
}
export interface RepoInfo {
owner: string;
repo: string;
}