From a9f4c05d6331f028fd2e69b79ad312ab92b3adf2 Mon Sep 17 00:00:00 2001 From: Kalan <51868853+kalanchan@users.noreply.github.com> Date: Mon, 21 Oct 2024 13:45:26 -0700 Subject: [PATCH] remove bug: prefix in issues (#5962) Originally, I added the `bug:` prefix to help categorize different types of issues like features, feedback, etc. But now that the repo is bugs only, we don't need this prefix. Also changing the label from `clients/vscode` to `repo/cody` to help distinguish where this issue originated from when we sync back to linear ## Test plan N/A ## Changelog --- .github/ISSUE_TEMPLATE/bug_report.yml | 8 +++----- vscode/src/services/utils/issue-reporter.ts | 2 +- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 697793d0bd42..3dc38728d471 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,11 +1,9 @@ name: Bug report (VS Code) -description: File a bug report to help us improve -title: 'bug: ' +description: File a bug report to help us improve the VS Code plugin +title: '' labels: - bug - - clients/vscode -projects: - - sourcegraph/387 + - repo/cody body: - type: markdown attributes: diff --git a/vscode/src/services/utils/issue-reporter.ts b/vscode/src/services/utils/issue-reporter.ts index 9df9747d86f2..8a326f807725 100644 --- a/vscode/src/services/utils/issue-reporter.ts +++ b/vscode/src/services/utils/issue-reporter.ts @@ -7,7 +7,7 @@ export function openCodyIssueReporter() { void vscode.commands.executeCommand('workbench.action.openIssueReporter', { extensionId: `${packageJson.publisher}.${packageJson.name}`, issueBody, - issueTitle: 'bug: ', + issueTitle: '', }) }