Skip to content

Commit 271ff3f

Browse files
authored
github: add refactor to issue template (#7561)
* github: add refactor issue template [no ci] * Update 07-refactor.yml
1 parent e2b0650 commit 271ff3f

File tree

3 files changed

+30
-2
lines changed

3 files changed

+30
-2
lines changed

.github/ISSUE_TEMPLATE/05-enhancement.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Enhancement template
1+
name: Enhancement
22
description: Used to request enhancements for llama.cpp
33
title: "Feature Request: "
44
labels: ["enhancement"]

.github/ISSUE_TEMPLATE/06-question.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Question template
1+
name: Question
22
description: Used to ask questions about llama.cpp
33
title: "Question: "
44
labels: ["question"]
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Refactor (Maintainers)
2+
description: Used to track refactoring opportunities
3+
title: "Refactor: "
4+
labels: ["refactor"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Don't forget to [check for existing refactor issue tickets](https://github.com/ggerganov/llama.cpp/issues?q=is%3Aopen+is%3Aissue+label%3Arefactoring) in case it's already covered.
10+
Also you may want to check [Pull request refactor label as well](https://github.com/ggerganov/llama.cpp/pulls?q=is%3Aopen+is%3Apr+label%3Arefactoring) for duplicates too.
11+
12+
- type: textarea
13+
id: background-description
14+
attributes:
15+
label: Background Description
16+
description: Please provide a detailed written description of the pain points you are trying to solve.
17+
placeholder: Detailed description behind your motivation to request refactor
18+
validations:
19+
required: true
20+
21+
- type: textarea
22+
id: possible-approaches
23+
attributes:
24+
label: Possible Refactor Approaches
25+
description: If you have some idea of possible approaches to solve this problem. You may want to make it a todo list.
26+
placeholder: Your idea of possible refactoring opportunity/approaches
27+
validations:
28+
required: false

0 commit comments

Comments
 (0)