diff options
author | Kjeld Schouten-Lebbing <[email protected]> | 2020-08-24 00:13:07 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2020-08-23 15:13:07 -0700 |
commit | 68f2288620f2a5401ded0ca0834e146a28e8b9f9 (patch) | |
tree | 847c992636f3dd1ba8db5955234e61cf85352015 /.github | |
parent | 7b15b8d18c7731069b2687a7f466a438c6536754 (diff) |
Add seperate issue for questions
A big portion of issues are of "Type: Question".
This PR adds a separate issue template for those.
It also automatically adds the "Type: Question" tag.
in addition it adds "Type: Defect" to all bug reports by default
Reviewed-by: Brian Behlendorf <[email protected]>
Reviewed-by: George Melikov <[email protected]>
Signed-off-by: Kjeld Schouten-Lebbing <[email protected]>
Closes #10779
Diffstat (limited to '.github')
-rw-r--r-- | .github/ISSUE_TEMPLATE/bug_report.md | 2 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/feature_request.md | 2 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/question.md | 37 |
3 files changed, 39 insertions, 2 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 28807103e..e4f754d66 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -2,7 +2,7 @@ name: Bug report about: Create a report to help us improve OpenZFS title: '' -labels: '' +labels: 'Type: Defect' assignees: '' --- diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index a8b9ea118..9b50a4a3d 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -10,7 +10,7 @@ assignees: '' <!-- Thank you for suggesting a feature. -Please check the our issue tracker before opening a new feature request. +Please check our issue tracker before opening a new feature request. Filling out the following template will help other contributors better understand your proposed feature. --> diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md new file mode 100644 index 000000000..0aee9f7c3 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/question.md @@ -0,0 +1,37 @@ +--- +name: Code Question +about: Ask a question about the code +title: '' +labels: 'Type: Question' +assignees: '' + +--- + +<!-- +Thank you for taking an interest in the OpenZFS codebase. + +Please be aware that most questions are preferably asked in the mailing list first. +This form is primarily meant for asking questions about the code itself. + +Please also check our issue tracker before opening a new question. +Filling out the following template will help other contributors better understand your question. +--> + +### Ask your question! + +<!-- +Please provide a clear and concise question. +--> + +### Which portion of the codebase does your question involve? + +<!-- +Optional: Please describe what portion of the codebase your issue involved. +Example: "Testsuite", "Buildbots", "CLI", a code snippet etc. +--> + +### Additional context + +<!-- +Any additional information you want to add? +--> |