Skip to content

Commit

Permalink
remove bug: prefix in issues (#5962)
Browse files Browse the repository at this point in the history
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
<!-- Required. See
https://docs-legacy.sourcegraph.com/dev/background-information/testing_principles.
-->

## Changelog

<!-- OPTIONAL; info at
https://www.notion.so/sourcegraph/Writing-a-changelog-entry-dd997f411d524caabf0d8d38a24a878c
-->
  • Loading branch information
kalanchan authored Oct 21, 2024
1 parent 7192bdd commit a9f4c05
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
8 changes: 3 additions & 5 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
2 changes: 1 addition & 1 deletion vscode/src/services/utils/issue-reporter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export function openCodyIssueReporter() {
void vscode.commands.executeCommand('workbench.action.openIssueReporter', {
extensionId: `${packageJson.publisher}.${packageJson.name}`,
issueBody,
issueTitle: 'bug: ',
issueTitle: '',
})
}

Expand Down

0 comments on commit a9f4c05

Please sign in to comment.