This is an automated email from the ASF dual-hosted git repository.

liubao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/servicecomb-java-chassis.git


The following commit(s) were added to refs/heads/master by this push:
     new 977f3ca52 Standard issue submission (#4715)
977f3ca52 is described below

commit 977f3ca52514e92a7bccef91cdb97a7afef71ec9
Author: SweetWuXiaoMei <[email protected]>
AuthorDate: Thu Feb 13 14:40:39 2025 +0800

    Standard issue submission (#4715)
---
 .github/ISSUE_TEMPLATE/bug_report.yml          | 33 ++++++++++++++++++++++++++
 .github/ISSUE_TEMPLATE/config.yml              | 18 ++++++++++++++
 .github/ISSUE_TEMPLATE/documentation_issue.yml | 27 +++++++++++++++++++++
 .github/ISSUE_TEMPLATE/feature_request.yml     | 33 ++++++++++++++++++++++++++
 .github/ISSUE_TEMPLATE/question.yml            | 27 +++++++++++++++++++++
 5 files changed, 138 insertions(+)

diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml 
b/.github/ISSUE_TEMPLATE/bug_report.yml
new file mode 100644
index 000000000..185873ad0
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/bug_report.yml
@@ -0,0 +1,33 @@
+name: Bug Report
+description: Create a report to help us improve
+title: "[BUG] - Issue Title"
+labels: bug
+
+body:
+  - type: markdown
+    attributes:
+      value: "## Describe the bug\nA clear and concise description of what the 
bug is."
+
+  - type: textarea
+    attributes:
+      label: Steps to Reproduce
+      description: "List the steps to reproduce the bug."
+      placeholder: "1. Go to '...'\n2. Click on '...'\n3. See error"
+
+  - type: textarea
+    attributes:
+      label: Expected Behavior
+      description: "Describe the behavior you expected to see."
+      placeholder: "A clear and concise description of what you expected to 
happen."
+
+  - type: input
+    attributes:
+      label: Servicecomb Version
+      description: "Please provide your Servicecomb version"
+      placeholder: "3.2.4"
+
+  - type: textarea
+    attributes:
+      label: Additional Context
+      description: "Add any other context about the problem here."
+      placeholder: "Any additional information that might help us debug the 
issue."
diff --git a/.github/ISSUE_TEMPLATE/config.yml 
b/.github/ISSUE_TEMPLATE/config.yml
new file mode 100644
index 000000000..16fd2512e
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/config.yml
@@ -0,0 +1,18 @@
+blank_issues_enabled: false
+contact_links:
+  - name: "Contact Support"
+    url: "mailto:[email protected]";
+    about: "If you need help, please contact us."
+templates:
+  - name: "Bug Report"
+    description: "Report a bug or issue."
+    filename: "bug_report.yml"
+  - name: "Feature Request"
+    description: "Request a new feature or improvement."
+    filename: "feature_request.yml"
+  - name: "Documentation Issue"
+    description: "Report an issue with documentation."
+    filename: "documentation_issue.yml"
+  - name: "Question"
+    description: "Ask a question or seek help."
+    filename: "question.yml"
diff --git a/.github/ISSUE_TEMPLATE/documentation_issue.yml 
b/.github/ISSUE_TEMPLATE/documentation_issue.yml
new file mode 100644
index 000000000..94ef34900
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/documentation_issue.yml
@@ -0,0 +1,27 @@
+name: Documentation Issue
+description: Report an issue with the documentation
+title: "[DOCUMENTATION] - Documentation Issue Title"
+labels: documentation
+
+body:
+  - type: markdown
+    attributes:
+      value: "## Describe the documentation issue\nA clear and concise 
description of the issue with the documentation."
+
+  - type: textarea
+    attributes:
+      label: Location in documentation
+      description: "Please provide the URL or section where the issue appears."
+      placeholder: "e.g. https://docs.example.com/section";
+
+  - type: textarea
+    attributes:
+      label: What should be changed?
+      description: "Please describe what changes or improvements should be 
made to the documentation."
+      placeholder: "Explain how we can improve the content."
+
+  - type: textarea
+    attributes:
+      label: Additional Context
+      description: "Provide any other context or examples here."
+      placeholder: "Additional comments or suggestions for the documentation."
diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml 
b/.github/ISSUE_TEMPLATE/feature_request.yml
new file mode 100644
index 000000000..3a44565e0
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/feature_request.yml
@@ -0,0 +1,33 @@
+name: Feature Request
+description: Suggest an idea or feature for this project
+title: "[FEATURE] - Feature Title"
+labels: enhancement
+
+body:
+  - type: markdown
+    attributes:
+      value: "## Describe the feature request\nA clear and concise description 
of what you want to be added to the project."
+
+  - type: textarea
+    attributes:
+      label: Problem this feature would solve
+      description: "Please describe the problem or challenge you're facing."
+      placeholder: "Explain why this feature would be helpful."
+
+  - type: textarea
+    attributes:
+      label: Describe the solution
+      description: "How do you envision this feature working?"
+      placeholder: "Provide a description of how the feature would solve the 
problem."
+
+  - type: textarea
+    attributes:
+      label: Alternatives considered
+      description: "Have you considered other solutions or alternatives? If 
yes, describe them."
+      placeholder: "Provide any alternative solutions you've thought about."
+
+  - type: textarea
+    attributes:
+      label: Additional Context
+      description: "Any other context or information that might help us 
implement this feature."
+      placeholder: "Include any links, mockups, or additional details."
diff --git a/.github/ISSUE_TEMPLATE/question.yml 
b/.github/ISSUE_TEMPLATE/question.yml
new file mode 100644
index 000000000..af3f350b5
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/question.yml
@@ -0,0 +1,27 @@
+name: General Question
+description: Ask a general question related to the project
+title: "[QUESTION] - Question Title"
+labels: question
+
+body:
+  - type: markdown
+    attributes:
+      value: "## What is your question?\nDescribe the question or issue you 
are facing. Be as specific as possible."
+
+  - type: textarea
+    attributes:
+      label: Steps to reproduce (if applicable)
+      description: "If your question is about a specific problem or bug, 
please include steps to reproduce it."
+      placeholder: "Provide steps, if applicable."
+
+  - type: textarea
+    attributes:
+      label: What have you tried so far?
+      description: "Please explain what you have already tried to resolve the 
issue or answer the question."
+      placeholder: "Describe the steps you've taken."
+
+  - type: textarea
+    attributes:
+      label: Additional context
+      description: "Provide any other context or information related to the 
question."
+      placeholder: "Include any relevant links or background information."

Reply via email to