Skip to content

Commit 683d6d0

Browse files
committed
chore: add github issue template
1 parent 40a6a87 commit 683d6d0

File tree

2 files changed

+106
-0
lines changed

2 files changed

+106
-0
lines changed
Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
name: 🐞 Bug Report
2+
description: Report a bug or unexpected behavior
3+
title: "[Bug] "
4+
labels: ["bug"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Please use this template and include as many details as possible to help us reproduce and fix the issue.
10+
- type: textarea
11+
id: commit
12+
attributes:
13+
label: Git commit
14+
description: Which commit are you trying to compile?
15+
placeholder: |
16+
$git rev-parse HEAD
17+
40a6a8710ec15b1b5db6b5a098409f6bc8f654a4
18+
validations:
19+
required: true
20+
- type: input
21+
id: os
22+
attributes:
23+
label: Operating System & Version
24+
placeholder: e.g. “Ubuntu 22.04”, “Windows 11 23H2”, “macOS 14.3”
25+
validations:
26+
required: true
27+
- type: dropdown
28+
id: backends
29+
attributes:
30+
label: GGML backends
31+
description: Which GGML backends do you know to be affected?
32+
options: [CPU, CUDA, HIP, Metal, Musa, SYCL, Vulkan, OpenCL]
33+
multiple: true
34+
validations:
35+
required: true
36+
- type: input
37+
id: cmd_arguments
38+
attributes:
39+
label: Command-line arguments used
40+
placeholder: The full command line you ran (with all flags)
41+
validations:
42+
required: true
43+
- type: textarea
44+
id: steps_to_reproduce
45+
attributes:
46+
label: Steps to reproduce
47+
placeholder: A step-by-step list of what you did
48+
validations:
49+
required: true
50+
- type: textarea
51+
id: expected_behavior
52+
attributes:
53+
label: What you expected to happen
54+
placeholder: Describe the expected behavior or result
55+
validations:
56+
required: true
57+
- type: textarea
58+
id: actual_behavior
59+
attributes:
60+
label: What actually happened
61+
placeholder: Describe what you saw instead (errors, logs, crash, etc.)
62+
validations:
63+
required: true
64+
- type: textarea
65+
id: logs_and_errors
66+
attributes:
67+
label: Logs / error messages / stack trace
68+
placeholder: Paste complete logs or error output
69+
- type: textarea
70+
id: additional_info
71+
attributes:
72+
label: Additional context / environment details
73+
placeholder: e.g. CPU model, GPU, RAM, model file versions, quantization type, etc.
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: 💡 Feature Request
2+
description: Suggest a new feature or improvement
3+
title: "[Feature] "
4+
labels: ["enhancement"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thank you for suggesting an improvement! Please fill in the fields below.
10+
- type: input
11+
id: summary
12+
attributes:
13+
label: Feature Summary
14+
placeholder: A one-line summary of the feature you’d like
15+
validations:
16+
required: true
17+
- type: textarea
18+
id: description
19+
attributes:
20+
label: Detailed Description
21+
placeholder: What problem does this solve? How do you expect it to work?
22+
validations:
23+
required: true
24+
- type: textarea
25+
id: alternatives
26+
attributes:
27+
label: Alternatives you considered
28+
placeholder: Any alternative designs or workarounds you tried
29+
- type: textarea
30+
id: additional_context
31+
attributes:
32+
label: Additional context
33+
placeholder: Any extra information (use cases, related functionalities, constraints)

0 commit comments

Comments
 (0)