Skip to content

Commit e287538

Browse files
committed
ISSUE_TEMPLATE
1 parent 51d7365 commit e287538

File tree

2 files changed

+139
-0
lines changed

2 files changed

+139
-0
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

+102
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
1+
name: Bug Report
2+
description: You think somethings is broken in SEAIT
3+
title: "[Bug]: "
4+
labels: ["bug-report"]
5+
6+
body:
7+
- type: checkboxes
8+
attributes:
9+
label: Is there an existing issue for this?
10+
description: Please search to see if an issue already exists for the bug you encountered, and that it hasn't been fixed in a recent build/commit.
11+
options:
12+
- label: I have searched the existing issues and checked the recent builds/commits
13+
required: true
14+
- type: markdown
15+
attributes:
16+
value: |
17+
*Please fill this form with as much information as possible, don't forget to fill "What OS..." and *provide screenshots if possible**
18+
- type: textarea
19+
id: what-did
20+
attributes:
21+
label: Bug Description
22+
description: A clear and concise description of the issue you're encountering.
23+
validations:
24+
required: true
25+
- type: textarea
26+
id: steps
27+
attributes:
28+
label: Step-by-step instructions to reproduce the issue.
29+
description: Be as specific as possible.
30+
validations:
31+
required: true
32+
- type: textarea
33+
id: expected-behavior
34+
attributes:
35+
label: Expected Behavior
36+
description: A description of what you expected to happen.
37+
validations:
38+
required: true
39+
- type: textarea
40+
id: current-behavior
41+
attributes:
42+
label: Current Behavior
43+
description: A description of what is currently happening instead.
44+
validations:
45+
required: true
46+
- type: input
47+
id: commit
48+
attributes:
49+
label: Version or Commit where the problem happens
50+
description: "Which SEAIT version or commit are you running ? Do not write *Latest Version/repo/commit*, as this means nothing and will have changed by the time we read your issue. Rather, copy the **Version: v1.2.3**"
51+
validations:
52+
required: true
53+
- type: dropdown
54+
id: platforms
55+
attributes:
56+
label: What platforms do you use SEAIT ?
57+
multiple: true
58+
options:
59+
- Windows
60+
- Linux
61+
- MacOS
62+
- type: input
63+
id: py-version
64+
attributes:
65+
label: What Python version are you running on ?
66+
description: 3.10.6 , 3.10.7 , 3.10.8 ...
67+
- type: dropdown
68+
id: proccecor
69+
attributes:
70+
label: What proccecor do you running on SEAIT ?
71+
multiple: true
72+
options:
73+
- GPU
74+
- CPU
75+
- type: input
76+
id: device
77+
attributes:
78+
label: What GPU are you running SEAIT on?
79+
description: RTX 3090, RTX 4090, RX6800
80+
- type: input
81+
id: vram
82+
attributes:
83+
label: How much GPU VRAM are you running SEAIT on?
84+
description: 10GB, 12GB, 24GB
85+
- type: input
86+
id: project
87+
attributes:
88+
label: On what Project the issue are you facing?
89+
description: SEAIT, Automatic 1111 webui, ComfyUI, Kohya's GUI ..
90+
- type: textarea
91+
id: logs
92+
attributes:
93+
label: Console logs
94+
description: Please provide **full** cmd/terminal and the terminal inside SEAIT logs from the moment you started SEAIT to the end of it, after your bug happened. If it's very long, provide a link to pastebin or similar service.
95+
render: Shell
96+
validations:
97+
required: true
98+
- type: textarea
99+
id: misc
100+
attributes:
101+
label: Additional information
102+
description: Please provide us with any relevant additional info or context.
+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Feature request
2+
description: Suggest an idea for this project
3+
title: "[Feature Request]: "
4+
labels: ["enhancement"]
5+
6+
body:
7+
- type: checkboxes
8+
attributes:
9+
label: Is there an existing issue for this?
10+
description: Please search to see if an issue already exists for the feature you want, and that it's not implemented in a recent build/commit.
11+
options:
12+
- label: I have searched the existing issues and checked the recent builds/commits
13+
required: true
14+
- type: markdown
15+
attributes:
16+
value: |
17+
*Please fill this form with as much information as possible, provide screenshots and/or illustrations of the feature if possible*
18+
- type: textarea
19+
id: feature
20+
attributes:
21+
label: Summary
22+
description: Briefly describe the new feature you would like to request.
23+
validations:
24+
required: true
25+
- type: textarea
26+
id: workflow
27+
attributes:
28+
label: Description
29+
description: Provide a detailed description of the feature you are suggesting. Explain how it would work, what problem it would solve, and any potential benefits.
30+
value:
31+
validations:
32+
required: true
33+
- type: textarea
34+
id: misc
35+
attributes:
36+
label: Additional information
37+
description: Add any other context or screenshots about the feature request here.

0 commit comments

Comments
 (0)