Skip to content

Commit f50a817

Browse files
committed
update issues templates
1 parent 602054e commit f50a817

File tree

4 files changed

+170
-50
lines changed

4 files changed

+170
-50
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 37 deletions
This file was deleted.
Lines changed: 102 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
1+
name: Bug Report
2+
description: File a bug report to help us improve
3+
title: '[BUG] '
4+
labels: ['bug']
5+
assignees: []
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
Make sure to have a proper title and description.
11+
12+
- type: textarea
13+
id: bug-description
14+
attributes:
15+
label: Describe the bug
16+
description: A clear and concise description of what the bug is.
17+
placeholder: Tell us what you see!
18+
validations:
19+
required: true
20+
21+
- type: textarea
22+
id: reproduce
23+
attributes:
24+
label: To Reproduce
25+
description: Steps to reproduce the behavior
26+
placeholder: |
27+
1. Go to '...'
28+
2. Click on '....'
29+
3. Scroll down to '....'
30+
4. See error
31+
validations:
32+
required: true
33+
34+
- type: textarea
35+
id: expected
36+
attributes:
37+
label: Expected behavior
38+
description: A clear and concise description of what you expected to happen.
39+
validations:
40+
required: true
41+
42+
- type: textarea
43+
id: screenshots
44+
attributes:
45+
label: Screenshots
46+
description: If applicable, add screenshots to help explain your problem.
47+
placeholder: Drag and drop or paste screenshots here
48+
49+
- type: textarea
50+
id: flow
51+
attributes:
52+
label: Flow
53+
description: If applicable, add exported flow in order to help replicating the problem.
54+
placeholder: Paste your exported flow here
55+
56+
- type: dropdown
57+
id: method
58+
attributes:
59+
label: Use Method
60+
description: How did you use Flowise?
61+
options:
62+
- Flowise Cloud
63+
- Docker
64+
- npx flowise start
65+
- pnpm start
66+
67+
- type: input
68+
id: version
69+
attributes:
70+
label: Flowise Version
71+
description: What version of Flowise are you running?
72+
placeholder: e.g., 1.2.11
73+
74+
- type: dropdown
75+
id: os
76+
attributes:
77+
label: Operating System
78+
description: What operating system are you using?
79+
options:
80+
- Windows
81+
- macOS
82+
- Linux
83+
- Other
84+
85+
- type: dropdown
86+
id: browser
87+
attributes:
88+
label: Browser
89+
description: What browser are you using?
90+
options:
91+
- Chrome
92+
- Firefox
93+
- Safari
94+
- Edge
95+
- Other
96+
97+
- type: textarea
98+
id: context
99+
attributes:
100+
label: Additional context
101+
description: Add any other context about the problem here.
102+
placeholder: Any additional information that might be helpful

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 13 deletions
This file was deleted.
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
name: Feature Request
2+
description: Suggest a new feature or enhancement for Flowise
3+
title: '[FEATURE] '
4+
labels: ['enhancement']
5+
assignees: []
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
Thanks for suggesting a new feature! Please provide as much detail as possible to help us understand your request.
11+
12+
- type: textarea
13+
id: feature-description
14+
attributes:
15+
label: Feature Description
16+
description: A clear and concise description of the feature you'd like to see in Flowise.
17+
placeholder: Describe what you want to be added or improved...
18+
validations:
19+
required: true
20+
21+
- type: dropdown
22+
id: feature-category
23+
attributes:
24+
label: Feature Category
25+
description: What category does this feature belong to?
26+
options:
27+
- UI/UX Improvement
28+
- New Node/Component
29+
- Integration
30+
- Performance
31+
- Security
32+
- Documentation
33+
- API Enhancement
34+
- Workflow/Flow Management
35+
- Authentication/Authorization
36+
- Database/Storage
37+
- Deployment/DevOps
38+
- Other
39+
validations:
40+
required: true
41+
42+
- type: textarea
43+
id: problem-statement
44+
attributes:
45+
label: Problem Statement
46+
description: What problem does this feature solve? What's the current pain point?
47+
placeholder: Describe the problem or limitation you're facing...
48+
49+
- type: textarea
50+
id: proposed-solution
51+
attributes:
52+
label: Proposed Solution
53+
description: How would you like this feature to work? Be as specific as possible.
54+
placeholder: Describe your ideal solution in detail...
55+
56+
- type: textarea
57+
id: mockups-references
58+
attributes:
59+
label: Mockups or References
60+
description: Any mockups, screenshots, or references to similar features in other tools?
61+
placeholder: Upload images or provide links to examples...
62+
63+
- type: textarea
64+
id: additional-context
65+
attributes:
66+
label: Additional Context
67+
description: Any other information, context, or examples that would help us understand this request.
68+
placeholder: Add any other relevant information...

0 commit comments

Comments
 (0)