Skip to content

Commit f8d27d4

Browse files
committed
Use forms instead of templates
1 parent 08a6bff commit f8d27d4

4 files changed

Lines changed: 91 additions & 73 deletions

File tree

.github/DISCUSSION_TEMPLATE/q-a.md

Lines changed: 0 additions & 21 deletions
This file was deleted.
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Q&A
2+
description: Ask a question, suggest an idea, or ask for help.
3+
title: "[Q&A]: "
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
> [!IMPORTANT]
9+
> Please make sure you are on the latest version of flyline!
10+
- type: textarea
11+
id: question
12+
attributes:
13+
label: What is your question, suggestion, or problem?
14+
description: Please describe the question, help request, or behavior you are experiencing.
15+
placeholder: Write your question or problem here...
16+
validations:
17+
required: true
18+
- type: textarea
19+
id: environment
20+
attributes:
21+
label: Environment & Version Information (If Relevant)
22+
description: |
23+
Copy version and env info by running this command in your terminal and pasting it below:
24+
```bash
25+
flyline version --copy
26+
```
27+
placeholder: Paste the output of 'flyline version --copy' here...
28+
render: text
29+
validations:
30+
required: false

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 52 deletions
This file was deleted.
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
name: Bug Report
2+
description: File a bug report for flyline
3+
title: "[BUG]: "
4+
labels: ["bug"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
> [!IMPORTANT]
10+
> Please make sure you are on the latest version of flyline!
11+
- type: textarea
12+
id: description
13+
attributes:
14+
label: Describe the Bug
15+
description: A clear and concise description of what the bug is and what you expected to happen.
16+
placeholder: Describe the bug here...
17+
validations:
18+
required: true
19+
- type: textarea
20+
id: environment
21+
attributes:
22+
label: Environment & Version Information
23+
description: |
24+
Copy version and env info by running this command in your terminal and pasting it below:
25+
```bash
26+
flyline version --copy
27+
```
28+
placeholder: Paste the output of 'flyline version --copy' here...
29+
render: text
30+
validations:
31+
required: true
32+
- type: textarea
33+
id: logs
34+
attributes:
35+
label: Debug Logs (Optional / If Necessary)
36+
description: |
37+
Copy the logs if you think there's a chance they will help:
38+
```bash
39+
# Run:
40+
flyline log set-level debug
41+
42+
# Then recreate the issue
43+
44+
# Then copy logs and paste them here:
45+
flyline log copy --last 10s
46+
```
47+
placeholder: Paste the output of 'flyline log copy --last 10s' here...
48+
render: text
49+
validations:
50+
required: false
51+
- type: textarea
52+
id: reproduction
53+
attributes:
54+
label: Steps to Reproduce
55+
description: Please describe the steps to reproduce the behavior.
56+
placeholder: |
57+
1. Go to '...'
58+
2. Press keys '...'
59+
3. See error '...'
60+
validations:
61+
required: true

0 commit comments

Comments
 (0)