diff options
| author | Sho Sakuma <me@m1sk9.dev> | 2026-01-10 14:09:43 +0900 |
|---|---|---|
| committer | Sho Sakuma <me@m1sk9.dev> | 2026-01-10 14:09:43 +0900 |
| commit | 7c4855a999c4d5dfd04d3aea07dd42f21eb83ee2 (patch) | |
| tree | e238a6182491dea36c7c32c1b4833dc2fdc44608 /.github/ISSUE_TEMPLATE | |
| parent | 340eb72a77bca58ebce15280e3f166f2a3b4966d (diff) | |
| download | LunaticChat-7c4855a999c4d5dfd04d3aea07dd42f21eb83ee2.tar.gz LunaticChat-7c4855a999c4d5dfd04d3aea07dd42f21eb83ee2.tar.bz2 LunaticChat-7c4855a999c4d5dfd04d3aea07dd42f21eb83ee2.zip | |
chore: Add template
Diffstat (limited to '.github/ISSUE_TEMPLATE')
| -rw-r--r-- | .github/ISSUE_TEMPLATE/bug_report.yml | 102 | ||||
| -rw-r--r-- | .github/ISSUE_TEMPLATE/config.yml | 5 | ||||
| -rw-r--r-- | .github/ISSUE_TEMPLATE/feature_request.yml | 55 |
3 files changed, 162 insertions, 0 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 0000000..3c194d2 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,102 @@ +name: Bug Report +description: Report a bug or unexpected behavior in LunaticChat +labels: ["bug"] +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to report a bug! Please fill out the information below to help us fix the issue. + + - type: textarea + id: description + attributes: + label: Bug Description + description: A clear and concise description of what the bug is. + placeholder: Describe the bug you encountered... + validations: + required: true + + - type: textarea + id: steps-to-reproduce + attributes: + label: Steps to Reproduce + description: Steps to reproduce the behavior + placeholder: | + 1. Run command '...' + 2. Send message '...' + 3. See error + validations: + required: true + + - type: textarea + id: expected-behavior + attributes: + label: Expected Behavior + description: What you expected to happen + placeholder: Describe what you expected to happen... + validations: + required: true + + - type: textarea + id: actual-behavior + attributes: + label: Actual Behavior + description: What actually happened + placeholder: Describe what actually happened... + validations: + required: true + + - type: input + id: plugin-version + attributes: + label: LunaticChat Version + description: What version of LunaticChat are you using? + placeholder: "e.g., v0.1.0" + validations: + required: true + + - type: input + id: minecraft-version + attributes: + label: Minecraft Version + description: What version of Minecraft are you running? + placeholder: "e.g., 1.21.4" + validations: + required: true + + - type: input + id: paper-version + attributes: + label: Paper Version + description: What version of Paper are you using? + placeholder: "e.g., Paper-1.21.4-123" + validations: + required: true + + - type: input + id: java-version + attributes: + label: Java Version + description: What version of Java are you running? + placeholder: "e.g., Java 21" + validations: + required: true + + - type: textarea + id: logs + attributes: + label: Logs and Error Messages + description: Please paste relevant logs or error messages here + placeholder: Paste your logs here... + render: shell + validations: + required: false + + - type: textarea + id: additional-context + attributes: + label: Additional Context + description: Add any other context about the problem here (screenshots, related issues, etc.) + placeholder: Any additional information... + validations: + required: false diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..e0f1ad3 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: true +contact_links: + - name: GitHub Discussions + url: https://github.com/m1sk9/LunaticChat/discussions + about: Ask questions and discuss ideas with the community diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 0000000..e27e3e6 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,55 @@ +name: Feature Request +description: Suggest a new feature or enhancement for LunaticChat +labels: ["enhancement"] +body: + - type: markdown + attributes: + value: | + Thanks for suggesting a new feature! Please provide as much detail as possible. + + - type: textarea + id: feature-description + attributes: + label: Feature Description + description: A clear and concise description of the feature you'd like to see + placeholder: Describe the feature you want... + validations: + required: true + + - type: textarea + id: problem-use-case + attributes: + label: Problem / Use Case + description: What problem does this feature solve? What would you use this for? + placeholder: | + Is your feature request related to a problem? Please describe. + Example: "I'm always frustrated when..." + validations: + required: true + + - type: textarea + id: proposed-solution + attributes: + label: Proposed Solution + description: How would you like this feature to work? + placeholder: Describe how you envision this feature working... + validations: + required: true + + - type: textarea + id: alternatives + attributes: + label: Alternative Solutions + description: Have you considered any alternative solutions or workarounds? + placeholder: Describe any alternative solutions you've considered... + validations: + required: false + + - type: textarea + id: additional-context + attributes: + label: Additional Context + description: Add any other context, screenshots, or examples about the feature request here + placeholder: Any additional information... + validations: + required: false |
