]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
chore: redirect feature requests to rfc discussion
authorEvan You <yyx990803@gmail.com>
Wed, 30 Aug 2023 07:06:05 +0000 (15:06 +0800)
committerEvan You <yyx990803@gmail.com>
Wed, 30 Aug 2023 07:16:42 +0000 (15:16 +0800)
.github/ISSUE_TEMPLATE/config.yml
.github/ISSUE_TEMPLATE/feature_request.yml [deleted file]

index af3782c8422620dbf4488349ca9dbce0992c5d2a..02f99c6bfbb53b5f6d040287dd4fb42e813ab23a 100644 (file)
@@ -1,5 +1,8 @@
 blank_issues_enabled: false
 contact_links:
+  - name: Feature Request
+    url: https://github.com/vuejs/rfcs/discussions
+    about: Suggest new features for consideration
   - name: Discord Chat
     url: https://chat.vuejs.org
     about: Ask questions and discuss with other Vue users in real time.
diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml
deleted file mode 100644 (file)
index 6861fc2..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-name: "\U0001F680 New feature proposal"
-description: Suggest an idea for this project
-labels: [":sparkles: feature request"]
-body:
-  - type: markdown
-    attributes:
-      value: |
-       **Before You Start...**
-
-        This form is only for submitting feature requests. If you have a usage question
-        or are unsure if this is really a bug, make sure to:
-
-        - Read the [docs](https://vuejs.org/)
-        - Ask on [Discord Chat](https://chat.vuejs.org/)
-        - Ask on [GitHub Discussions](https://github.com/vuejs/core/discussions)
-        - Look for / ask questions on [Stack Overflow](https://stackoverflow.com/questions/ask?tags=vue.js)
-
-        Also try to search for your issue - another user may have already requested something similar!
-
-  - type: textarea
-    id: problem-description
-    attributes:
-      label: What problem does this feature solve?
-      description: |
-        Explain your use case, context, and rationale behind this feature request. More importantly, what is the **end user experience** you are trying to build that led to the need for this feature?
-
-        An important design goal of Vue is keeping the API surface small and straightforward. In general, we only consider adding new features that solve a problem that cannot be easily dealt with using existing APIs (i.e. not just an alternative way of doing things that can already be done). The problem should also be common enough to justify the addition.
-      placeholder: Problem description
-    validations:
-      required: true
-  - type: textarea
-    id: proposed-API
-    attributes:
-      label: What does the proposed API look like?
-      description: |
-        Describe how you propose to solve the problem and provide code samples of how the API would work once implemented. Note that you can use [Markdown](https://guides.github.com/features/mastering-markdown/) to format your code blocks.
-      placeholder: Assumed API
-    validations:
-      required: true