diff --git a/.github/ISSUE_TEMPLATE/0_feature_request.yml b/.github/ISSUE_TEMPLATE/0_feature_request.yml deleted file mode 100644 index 0bf3a61757..0000000000 --- a/.github/ISSUE_TEMPLATE/0_feature_request.yml +++ /dev/null @@ -1,15 +0,0 @@ -name: Feature Request -description: "Tip: open this issue template from within Zed with the `request feature` command palette action" -type: "Feature" -body: - - type: textarea - attributes: - label: Describe the feature - description: A one line summary, and description of what you want to happen. - value: | - Summary: - - Description: - - Screenshots: - diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 9a51874331..991f2ce91a 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,6 +1,9 @@ # yaml-language-server: $schema=https://json.schemastore.org/github-issue-config.json blank_issues_enabled: false contact_links: + - name: Feature Request + url: https://github.com/zed-industries/zed/discussions/new/choose + about: To request a feature, open a new Discussion in one of the appropriate Discussion categories - name: Zed Discussion Forum url: https://github.com/zed-industries/zed/discussions about: A community discussion forum diff --git a/crates/feedback/src/feedback.rs b/crates/feedback/src/feedback.rs index 295114c0cb..ddac6f446e 100644 --- a/crates/feedback/src/feedback.rs +++ b/crates/feedback/src/feedback.rs @@ -22,7 +22,7 @@ const fn zed_repo_url() -> &'static str { } fn request_feature_url() -> String { - "https://github.com/zed-industries/zed/issues/new?template=0_feature_request.yml".to_string() + "https://github.com/zed-industries/zed/discussions/new/choose".to_string() } fn file_bug_report_url(specs: &SystemSpecs) -> String {