Skip to content
This repository was archived by the owner on Jul 8, 2025. It is now read-only.

Commit aebe051

Browse files
authored
chore: issue types unified (#215)
1 parent 2732434 commit aebe051

File tree

3 files changed

+149
-0
lines changed

3 files changed

+149
-0
lines changed

.github/ISSUE_TEMPLATE/1-bug.yml

Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
name: "Bug"
2+
description: "Report a bug to help us improve the proxy system."
3+
type: Bug
4+
title: "-- Provide a general summary of the issue --"
5+
labels: ["bug", "needs-triage"]
6+
assignees: "-"
7+
body:
8+
- type: markdown
9+
attributes:
10+
value: "To expedite our maintainers' efforts, please search for [duplicate or closed issues](https://github.com/mindersec/minder/issues?q=is%3Aissue+) and familiarize yourself with our [contributing guidelines](https://github.com/mindersec/minder/blob/main/CONTRIBUTING.md)."
11+
12+
- type: textarea
13+
id: what-happened
14+
attributes:
15+
label: "Describe the issue"
16+
description: "A clear and concise description of what the bug is. If applicable, add screenshots to illustrate the problem."
17+
validations:
18+
required: true
19+
20+
- type: textarea
21+
id: reproduce-steps
22+
attributes:
23+
label: "Steps to Reproduce"
24+
description: "Describe the steps to reproduce the behavior."
25+
validations:
26+
required: true
27+
28+
- type: dropdown
29+
id: operating-system
30+
attributes:
31+
label: "Operating System"
32+
description: "Select the operating system where the issue occurred."
33+
options:
34+
- Microsoft Windows (Intel)
35+
- Microsoft Windows (Arm)
36+
- MacOS (Arm)
37+
- MacOS (Intel)
38+
- Linux (Arm)
39+
- Linux (Intel)
40+
- Other
41+
validations:
42+
required: true
43+
44+
- type: input
45+
id: ide-version
46+
attributes:
47+
label: "IDE and Version"
48+
description: "Enter the IDE name and version."
49+
placeholder: "e.g. VS Code 1.78.0"
50+
validations:
51+
required: true
52+
53+
- type: input
54+
id: extension-version
55+
attributes:
56+
label: "Extension and Version"
57+
description: "Enter the extension name and version."
58+
placeholder: "e.g. Proxy Extension 0.5.1"
59+
validations:
60+
required: true
61+
62+
- type: dropdown
63+
id: provider
64+
attributes:
65+
label: "Provider"
66+
description: "Select the provider used."
67+
options:
68+
- Anthropic
69+
- OpenAI
70+
- GitHub Copilot
71+
- vLLM
72+
- Ollama
73+
- Other
74+
validations:
75+
required: true
76+
77+
- type: input
78+
id: model
79+
attributes:
80+
label: "Model"
81+
description: "Enter the model name used (e.g. GPT-4, Claude 3)."
82+
placeholder: "e.g. GPT-4"
83+
validations:
84+
required: true
85+
86+
- type: input
87+
id: codegate-version
88+
attributes:
89+
label: "Codegate version"
90+
description: "Enter the version of CodeGate (e.g. `v0.1.8`, `4845e00c039e`)."
91+
placeholder: "e.g. v0.1.8"
92+
validations:
93+
required: true
94+
95+
- type: textarea
96+
id: logs
97+
attributes:
98+
label: "Logs"
99+
description: "If applicable, paste logs or error messages."
100+
placeholder: "Paste log content here."
101+
102+
- type: textarea
103+
id: additional-context
104+
attributes:
105+
label: "Additional Context"
106+
description: "Add any other context or details about the problem here (e.g. link to Discussion, etc.)."
107+
required: false

.github/ISSUE_TEMPLATE/2-task.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Task
2+
description: Task request
3+
type: Task
4+
title: '[Task]: '
5+
labels: []
6+
body:
7+
- type: textarea
8+
id: description
9+
attributes:
10+
label: Description
11+
description: Describe the need. Why is it needed? What is the expected outcome? What is the impact?
12+
placeholder: Describe the task
13+
validations:
14+
required: true
15+
16+
- type: textarea
17+
id: additional-context
18+
attributes:
19+
label: "Additional Context"
20+
description: "Add any other context or details about the problem here (e.g. link to Discussion, etc.)."
21+
required: false

.github/ISSUE_TEMPLATE/3-chore.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Chore
2+
description: Chore request
3+
type: Chore
4+
title: '[Chore]: '
5+
labels: ["chore", "needs-triage"]
6+
body:
7+
- type: textarea
8+
id: description
9+
attributes:
10+
label: Description
11+
description: Describe the need. Why is it needed? What is the expected outcome? What is the impact?
12+
placeholder: Describe the task
13+
validations:
14+
required: true
15+
16+
- type: textarea
17+
id: additional-context
18+
attributes:
19+
label: "Additional Context"
20+
description: "Add any other context or details about the problem here (e.g. link to Discussion, etc.)."
21+
required: false

0 commit comments

Comments
 (0)