aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github/ISSUE_TEMPLATE/question.yml
blob: ac170abf816d7e812f50c76b74c4ec2e870691bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
name: Question
description: Ask a question about using DropOut
title: "[Question]: "
labels: ["question"]
assignees: []

body:
  - type: markdown
    attributes:
      value: |
        Have a question about using DropOut? Please fill out the form below.
        
        **Note:** For bug reports, please use the Bug Report template instead.

  - type: checkboxes
    id: prerequisites
    attributes:
      label: Prerequisites
      description: Please confirm you have completed the following before submitting. Issues that check "I have not read carefully" may be closed immediately.
      options:
        - label: I understand that Issues are for asking questions and getting help, not for complaints.
          required: false
        - label: I have not read carefully and just clicked through everything, believing this won't affect issue handling.
          required: false
        - label: I have searched existing issues to see if my question has been answered
          required: false
        - label: I have read the README and documentation
          required: false

  - type: dropdown
    id: category
    attributes:
      label: Question Category
      description: What is your question about?
      options:
        - Installation and Setup
        - Account and Authentication
        - Minecraft Version Management
        - Mod Loaders (Fabric/Forge)
        - Java Installation and Configuration
        - Game Launch Issues
        - Settings and Configuration
        - Building from Source
        - Contributing to the Project
        - Other
    validations:
      required: true

  - type: textarea
    id: question
    attributes:
      label: Your Question
      description: Please describe your question in detail
      placeholder: What would you like to know?
    validations:
      required: true

  - type: input
    id: version
    attributes:
      label: DropOut Version (if applicable)
      description: What version of DropOut are you using?
      placeholder: "e.g., 0.1.23"
    validations:
      required: false

  - type: dropdown
    id: os
    attributes:
      label: Operating System (if applicable)
      description: Which operating system are you using?
      options:
        - Windows
        - macOS
        - Linux
        - Not applicable
    validations:
      required: false

  - type: textarea
    id: context
    attributes:
      label: Additional Context
      description: Add any other context, screenshots, or information that might help us answer your question
      placeholder: Any additional details...
    validations:
      required: false