Skip to content

Commit 7396990

Browse files
committed
Add pullRequestTemplate parameter to provideTitleAndDescription method
1 parent d639e91 commit 7396990

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/api/api.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ export interface IGit {
242242
}
243243

244244
export interface TitleAndDescriptionProvider {
245-
provideTitleAndDescription(context: { commitMessages: string[], patches: string[] | { patch: string, fileUri: string, previousFileUri?: string }[], issues?: { reference: string, content: string }[] }, token: CancellationToken): Promise<{ title: string, description?: string } | undefined>;
245+
provideTitleAndDescription(context: { commitMessages: string[], patches: string[] | { patch: string, fileUri: string, previousFileUri?: string }[], issues?: { reference: string, content: string }[], pullRequestTemplate?: string }, token: CancellationToken): Promise<{ title: string, description?: string } | undefined>;
246246
}
247247

248248
export interface ReviewerComments {

0 commit comments

Comments
 (0)