Skip to content

Commit 0a303b9

Browse files
authored
body_suffix (#7292)
1 parent 65ec4c3 commit 0a303b9

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/github/copilotRemoteAgent.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ const COMMIT_YOUR_CHANGES = vscode.l10n.t('Commit your changes to continue codin
4949
const FOLLOW_UP_REGEX = /open-pull-request-webview.*((%7B.*?%7D)|(\{.*?\}))/;
5050
const COPILOT = '@copilot';
5151

52+
const body_suffix = vscode.l10n.t('Created from VS Code via the [GitHub Pull Request](https://marketplace.visualstudio.com/items?itemName=GitHub.vscode-pull-request-github) extension.');
53+
5254
export class CopilotRemoteAgentManager extends Disposable {
5355
public static ID = 'CopilotRemoteAgentManager';
5456

@@ -561,6 +563,7 @@ export class CopilotRemoteAgentManager extends Disposable {
561563
title,
562564
body_placeholder: problemContext,
563565
base_ref,
566+
body_suffix,
564567
...(hasChanges && { head_ref: ref })
565568
}
566569
};

0 commit comments

Comments
 (0)