Skip to content

Commit f4f77d6

Browse files
committed
ci: updated issue templates
1 parent 8ee51a3 commit f4f77d6

File tree

2 files changed

+100
-0
lines changed

2 files changed

+100
-0
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

+65
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
name: 🐞 Bug Report
2+
description: Submit a bug report
3+
labels: bug
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thank you for submitting a bug report. We appreciate your effort to provide detailed information. Please answer the following questions to help us identify and fix the bug. Thank you!
9+
- type: textarea
10+
id: proposal
11+
attributes:
12+
label: "Bug Description:"
13+
description: >
14+
Describe the bug in detail. Include a [Minimal Reproducible Example](https://en.wikipedia.org/wiki/Minimal_reproducible_example) (MRE) if possible. Place any code blocks within triple backticks:
15+
value: |
16+
```bash
17+
# Example code block; replace with your code if applicable
18+
```
19+
validations:
20+
required: true
21+
- type: input
22+
id: version
23+
attributes:
24+
label: "Manticore Search Version:"
25+
description: >
26+
Provide the version of Manticore Search you are using. Execute `searchd -v` in the command line to find this information.
27+
validations:
28+
required: true
29+
- type: input
30+
id: os
31+
attributes:
32+
label: "Client Version:"
33+
description: >
34+
Specify the version of your Manticore client.
35+
validations:
36+
required: true
37+
- type: dropdown
38+
id: dev
39+
attributes:
40+
label: "Have you tried the latest development version of Manticore Search and the client?"
41+
multiple: false
42+
options:
43+
- "Yes"
44+
- "No"
45+
- type: markdown
46+
attributes:
47+
value: "## Thank you for completing the form! For an expedited solution, consider our [professional services](https://manticoresearch.com/services/)."
48+
- type: textarea
49+
id: checklist
50+
attributes:
51+
label: "Internal Checklist:"
52+
description: >
53+
**For Manticore Team Use Only** — Please do not edit this section. This checklist will be completed by the Manticore team as they manage the issue.
54+
value: |
55+
<sup>To be completed by the assignee. Check off tasks that have been completed or are not applicable.</sup>
56+
<details>
57+
58+
- [ ] Implementation completed
59+
- [ ] Tests developed
60+
- [ ] Documentation updated
61+
- [ ] Documentation reviewed
62+
63+
</details>
64+
validations:
65+
required: true
+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: 🌟 Feature Request
2+
description: Submit a proposal for a new feature or enhancement
3+
body:
4+
- type: textarea
5+
id: proposal
6+
attributes:
7+
label: "Proposal:"
8+
description: >
9+
Please describe your proposal in detail.
10+
Include why you believe this feature should be added and what use cases it supports.
11+
If applicable, add any examples or code snippets inside triple backticks to clarify your proposal.
12+
validations:
13+
required: true
14+
- type: markdown
15+
attributes:
16+
value: "## Thank you for completing the form! If you are interested in sponsoring the development of this feature, consider our [professional services](https://manticoresearch.com/services/)."
17+
- type: textarea
18+
id: checklist
19+
attributes:
20+
label: "Checklist:"
21+
description: >
22+
**For Manticore Team Use Only** — Please do not edit this section. This checklist will be completed by the Manticore team as they manage the issue.
23+
value: |
24+
<sup>To be completed by the assignee. Check off tasks that have been completed or are not applicable.</sup>
25+
<details>
26+
27+
- [ ] Implementation completed
28+
- [ ] Tests developed
29+
- [ ] Documentation updated
30+
- [ ] Documentation reviewed
31+
- [x] OpenAPI YAML updated and issue created to rebuild clients
32+
33+
</details>
34+
validations:
35+
required: true

0 commit comments

Comments
 (0)