Skip to content

Commit 34fb1d9

Browse files
authored
Add template for Q&A discussions (#1070)
* feat: Add discussion template for Q&A * refactor: Test if "general" makes the template available * refactor: test if omitting some fields breaks the template * fix: the previous commit broke the template, next test * fix: maybe explicit empty strings will be accepted * fix: step by step testing continues... * fix: Xs instead of empty strings everywhere * refactor: next round of testing * refactor: try different name for q&a * refactor: try qa.yml * refactor: try q-a.yml * refactor: Word a description better * refactor: Change up order * fix: fix label (hopefully) * style: Change "your question" to "question" * style: Change "flet" to "Flet"
1 parent 035b001 commit 34fb1d9

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
title: "[Question]"
2+
labels: ["help wanted"]
3+
body:
4+
- type: markdown
5+
attributes:
6+
value: |
7+
This is the place to ask for specifics about Flet or for help with problems you encountered while using it.
8+
- type: textarea
9+
id: question
10+
attributes:
11+
label: Question
12+
description: Please formulate your question as precisely as possible.
13+
validations:
14+
required: true
15+
- type: textarea
16+
id: code
17+
attributes:
18+
label: Code sample
19+
description: |
20+
If applicable, paste in a code sample of your best attempt so far. It will automatically be rendered as python code.
21+
render: python
22+
- type: textarea
23+
id: error
24+
attributes:
25+
label: Error message
26+
description: If applicable, paste in the full error message you received.
27+
render: bash
28+
- type: checkboxes
29+
id: similar-search
30+
attributes:
31+
label: ------------------------------------------------------
32+
options:
33+
- label: I have searched for answers to my question both in the issues and in previous discussions.
34+
required: true

0 commit comments

Comments
 (0)