Skip to content

Commit fc33b02

Browse files
danfimovCopilot
andauthored
chore: add issue template (#557)
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent a47dd04 commit fc33b02

File tree

2 files changed

+123
-0
lines changed

2 files changed

+123
-0
lines changed
Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
name: Bug Report
2+
description: File a bug report to help us improve
3+
title: "Short description of the bug"
4+
labels: ["bug"]
5+
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
Thanks for taking the time to fill out this bug report!
11+
12+
- type: input
13+
id: version
14+
attributes:
15+
label: Taskiq version
16+
description: What version of Taskiq are you running?
17+
placeholder: e.g., 0.12.0
18+
validations:
19+
required: true
20+
21+
- type: dropdown
22+
id: python-version
23+
attributes:
24+
label: Python version
25+
description: What version of Python are you using?
26+
options:
27+
- Python 3.9 or lower
28+
- Python 3.10
29+
- Python 3.11
30+
- Python 3.12
31+
- Python 3.13
32+
- Python 3.14
33+
- Python 3.14t
34+
validations:
35+
required: true
36+
37+
- type: input
38+
id: os
39+
attributes:
40+
label: OS
41+
description: What OS are you using?
42+
placeholder: e.g., Windows, Linux, macOS
43+
validations:
44+
required: true
45+
46+
- type: textarea
47+
id: what-happened
48+
attributes:
49+
label: What happened?
50+
description: A clear and concise description of what the bug is.
51+
placeholder: Tell us what you see!
52+
validations:
53+
required: true
54+
55+
- type: textarea
56+
id: logs
57+
attributes:
58+
label: Relevant log output
59+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
60+
render: shell
61+
validations:
62+
required: false
63+
64+
- type: textarea
65+
id: broker-init-file
66+
attributes:
67+
label: Broker initialization code
68+
description: Provide minimal code from the taskiq broker initialization file
69+
render: python
70+
validations:
71+
required: false
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
name: Feature Request
2+
description: Suggest an idea for this project
3+
title: "Short description of feature"
4+
labels: ["enhancement"]
5+
assignees:
6+
- s3rius
7+
8+
body:
9+
- type: markdown
10+
attributes:
11+
value: |
12+
Thanks for suggesting a new feature!
13+
14+
- type: textarea
15+
id: problem-description
16+
attributes:
17+
label: Is your feature request related to a problem?
18+
description: A clear and concise description of what the problem is.
19+
placeholder: I'm always frustrated when...
20+
validations:
21+
required: true
22+
23+
- type: textarea
24+
id: solution-description
25+
attributes:
26+
label: Describe the solution you'd like
27+
description: A clear and concise description of what you want to happen.
28+
validations:
29+
required: true
30+
31+
- type: textarea
32+
id: alternatives
33+
attributes:
34+
label: Describe alternatives you've considered
35+
description: A clear and concise description of any alternative solutions or features you've considered.
36+
validations:
37+
required: false
38+
39+
- type: dropdown
40+
id: component
41+
attributes:
42+
label: Which component would this affect?
43+
description: Select the component this feature would primarily affect
44+
options:
45+
- Broker
46+
- Result Backend
47+
- Scheduler Source
48+
- Configuration
49+
- Documentation
50+
- Other
51+
validations:
52+
required: true

0 commit comments

Comments
 (0)