From 7d5adf0a4207c1063ba045889214f5c7b3e3fc9f Mon Sep 17 00:00:00 2001 From: 132ikl <132@ikl.sh> Date: Sun, 17 Aug 2025 16:33:30 -0400 Subject: [PATCH] Redirect "Questions" issue option to Discussions (#16443) This PR removes the "Question" issue template, and adds a section to the issue creation menu labeled "Question" which redirects to a new Q&A discussion post. I have this set up on my fork if you want to see what it looks like: https://github.com/132ikl/nushell/issues/new/choose ## Release notes summary - What our users need to know N/A ## Tasks after submitting - [ ] Convert all issues currently tagged with the "question" label into Discussions --- .github/ISSUE_TEMPLATE/config.yml | 5 +++++ .github/ISSUE_TEMPLATE/question.yml | 21 --------------------- 2 files changed, 5 insertions(+), 21 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/config.yml delete mode 100644 .github/ISSUE_TEMPLATE/question.yml diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000000..7af801a8e9 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: true +contact_links: + - name: Question + url: https://github.com/nushell/nushell/discussions/new?category=q-a + about: Create a new Q&A discussion post diff --git a/.github/ISSUE_TEMPLATE/question.yml b/.github/ISSUE_TEMPLATE/question.yml deleted file mode 100644 index 6ed045b521..0000000000 --- a/.github/ISSUE_TEMPLATE/question.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: Question -description: "When you have a question to ask" -labels: "question" -body: - - type: textarea - id: problem - attributes: - label: Question - description: Leave your question here - placeholder: | - A clear and concise question - Example: Is there any equivalent of bash's $CDPATH in Nu? - validations: - required: true - - type: textarea - id: context - attributes: - label: Additional context and details - description: Add any other context, screenshots or other media that will help us understand your question here, if needed. - validations: - required: false