diff options
author | Brian <mofosyne@gmail.com> | 2024-05-28 20:27:27 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-28 20:27:27 +1000 |
commit | 271ff3fc44a6ecfcea3ebc192e67567d578b7772 (patch) | |
tree | 20c4d77559333a8c3b5537b21ef278a16cb0c468 | |
parent | e2b065071c5fc8ac5697d12ca343551faee465cc (diff) |
github: add refactor to issue template (#7561)
* github: add refactor issue template [no ci]
* Update 07-refactor.yml
-rw-r--r-- | .github/ISSUE_TEMPLATE/05-enhancement.yml | 2 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/06-question.yml | 2 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/07-refactor.yml | 28 |
3 files changed, 30 insertions, 2 deletions
diff --git a/.github/ISSUE_TEMPLATE/05-enhancement.yml b/.github/ISSUE_TEMPLATE/05-enhancement.yml index 7f516abb..58fca731 100644 --- a/.github/ISSUE_TEMPLATE/05-enhancement.yml +++ b/.github/ISSUE_TEMPLATE/05-enhancement.yml @@ -1,4 +1,4 @@ -name: Enhancement template +name: Enhancement description: Used to request enhancements for llama.cpp title: "Feature Request: " labels: ["enhancement"] diff --git a/.github/ISSUE_TEMPLATE/06-question.yml b/.github/ISSUE_TEMPLATE/06-question.yml index 23ad2f41..9d3ff497 100644 --- a/.github/ISSUE_TEMPLATE/06-question.yml +++ b/.github/ISSUE_TEMPLATE/06-question.yml @@ -1,4 +1,4 @@ -name: Question template +name: Question description: Used to ask questions about llama.cpp title: "Question: " labels: ["question"] diff --git a/.github/ISSUE_TEMPLATE/07-refactor.yml b/.github/ISSUE_TEMPLATE/07-refactor.yml new file mode 100644 index 00000000..3a68d3d5 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/07-refactor.yml @@ -0,0 +1,28 @@ +name: Refactor (Maintainers) +description: Used to track refactoring opportunities +title: "Refactor: " +labels: ["refactor"] +body: + - type: markdown + attributes: + value: | + 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. + 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. + + - type: textarea + id: background-description + attributes: + label: Background Description + description: Please provide a detailed written description of the pain points you are trying to solve. + placeholder: Detailed description behind your motivation to request refactor + validations: + required: true + + - type: textarea + id: possible-approaches + attributes: + label: Possible Refactor Approaches + description: If you have some idea of possible approaches to solve this problem. You may want to make it a todo list. + placeholder: Your idea of possible refactoring opportunity/approaches + validations: + required: false |