Skip to content

Commit 7e669b0

Browse files
authored
Add issue templates (#290)
1 parent 244cd3c commit 7e669b0

File tree

2 files changed

+112
-0
lines changed

2 files changed

+112
-0
lines changed
Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
name: Bug Report
2+
description: "Something is not behaving as expected."
3+
title: "[Bug]: "
4+
labels: ['Potential Bug']
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Before submitting a **Bug Report**, please ensure the following:
10+
11+
- **1:** You are running the latest version of ComfyUI.
12+
- **2:** You have looked at the existing bug reports and made sure this isn't already reported.
13+
- **3:** You confirmed that the bug is not caused by a custom node. You can disable all custom nodes by passing
14+
`--disable-all-custom-nodes` command line argument.
15+
16+
- type: textarea
17+
attributes:
18+
label: Frontend Version
19+
description: 'What is the frontend version you are using? You can check this in the settings dialog'
20+
validations:
21+
required: true
22+
- type: textarea
23+
attributes:
24+
label: Expected Behavior
25+
description: 'What you expected to happen.'
26+
validations:
27+
required: true
28+
- type: textarea
29+
attributes:
30+
label: Actual Behavior
31+
description: 'What actually happened. Please include a screenshot / video clip of the issue if possible.'
32+
validations:
33+
required: true
34+
- type: textarea
35+
attributes:
36+
label: Steps to Reproduce
37+
description: "Describe how to reproduce the issue. Please be sure to attach a workflow JSON or PNG, ideally one that doesn't require custom nodes to test. If the bug open happens when certain custom nodes are used, most likely that custom node is what has the bug rather than ComfyUI, in which case it should be reported to the node's author."
38+
validations:
39+
required: true
40+
- type: textarea
41+
attributes:
42+
label: Debug Logs
43+
description: 'Please copy the output from your terminal logs here.'
44+
render: powershell
45+
validations:
46+
required: true
47+
- type: textarea
48+
attributes:
49+
label: Browser Logs
50+
description: 'Please copy the output from your browser logs here. You can access this by pressing F12 to toggle the developer tools, then navigating to the Console tab.'
51+
validations:
52+
required: true
53+
- type: dropdown
54+
id: browsers
55+
attributes:
56+
label: What browsers do you use to access the UI ?
57+
multiple: true
58+
options:
59+
- Mozilla Firefox
60+
- Google Chrome
61+
- Brave
62+
- Apple Safari
63+
- Microsoft Edge
64+
- Android
65+
- iOS
66+
- Other
67+
- type: textarea
68+
attributes:
69+
label: Other
70+
description: 'Any other additional information you think might be helpful.'
71+
validations:
72+
required: false
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
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: What would your feature do ?
22+
description: Tell us about your feature in a very clear and simple way, and what problem it would solve
23+
validations:
24+
required: true
25+
- type: textarea
26+
id: workflow
27+
attributes:
28+
label: Proposed workflow
29+
description: Please provide us with step by step information on how you'd like the feature to be accessed and used
30+
value: |
31+
1. Go to ....
32+
2. Press ....
33+
3. ...
34+
validations:
35+
required: true
36+
- type: textarea
37+
id: misc
38+
attributes:
39+
label: Additional information
40+
description: Add any other context or screenshots about the feature request here.

0 commit comments

Comments
 (0)