/ .github / ISSUE_TEMPLATE / question.md
question.md
 1  ---
 2  name: Question
 3  about: Ask a question about usage or behaviour
 4  title: "[QUESTION]: "
 5  labels: question, triage
 6  assignees: ''
 7  
 8  ---
 9  
10  name: Question
11  description: Ask a question about usage or behaviour
12  title: "[Question]: "
13  labels: ["question", "triage"]
14  body:
15    - type: markdown
16      attributes:
17        value: |
18          Have a question? You can also ask in [Discussions](../discussions) for broader conversations.
19  
20    - type: textarea
21      id: question
22      attributes:
23        label: Your question
24        description: What would you like to know?
25        placeholder: How do I...?
26      validations:
27        required: true
28  
29    - type: textarea
30      id: context
31      attributes:
32        label: Context
33        description: Any relevant context that helps us answer your question
34        placeholder: I'm trying to achieve X and I've tried Y...
35      validations:
36        required: false
37  
38    - type: textarea
39      id: research
40      attributes:
41        label: What I've already tried
42        description: What have you already looked at or attempted?
43        placeholder: I've read the README and searched issues but...
44      validations:
45        required: false
46  
47    - type: checkboxes
48      id: checked
49      attributes:
50        label: Pre-submission checklist
51        options:
52          - label: I have searched existing issues and discussions
53            required: true
54          - label: I have read the documentation
55            required: true