From 3025ce32a6bed776b3600d371d94bc6785645a99 Mon Sep 17 00:00:00 2001 From: Marco Malavolti <marco.malavolti@gmail.com> Date: Sat, 28 Nov 2020 17:22:04 +0100 Subject: [PATCH] Added Description templates for Issues --- .gitlab/issue_templates/bug.md | 37 ++++++++++++++++++++++ .gitlab/issue_templates/feature_request.md | 13 ++++++++ 2 files changed, 50 insertions(+) create mode 100644 .gitlab/issue_templates/bug.md create mode 100644 .gitlab/issue_templates/feature_request.md diff --git a/.gitlab/issue_templates/bug.md b/.gitlab/issue_templates/bug.md new file mode 100644 index 0000000..6ae5500 --- /dev/null +++ b/.gitlab/issue_templates/bug.md @@ -0,0 +1,37 @@ +<!--- +Please read this! + +Before opening a new issue, make sure to search for keywords in the issues +filtered by the "bug" label: + +- https://gitlab.geant.org/marco.malavolti/eccs2/-/issues?label_name%5B%5D=bug + +and verify the issue you're about to submit isn't a duplicate. +---> + +### Summary + +<!-- Summarize the bug encountered concisely. --> + +### Steps to reproduce + +<!-- Describe how one can reproduce the issue - this is very important. Please use an ordered list. --> + +### What is the current *bug* behavior? + +<!-- Describe what actually happens. --> + +### What is the expected *correct* behavior? + +<!-- Describe what you should see instead. --> + +### Relevant logs and/or screenshots + +<!-- Paste any relevant logs - please use code blocks (```) to format console output, logs, and code + as it's tough to read otherwise. --> + +### Possible fixes + +<!-- If you can, link to the line of code that might be responsible for the problem. --> + +/label ~bug diff --git a/.gitlab/issue_templates/feature_request.md b/.gitlab/issue_templates/feature_request.md new file mode 100644 index 0000000..2055471 --- /dev/null +++ b/.gitlab/issue_templates/feature_request.md @@ -0,0 +1,13 @@ +### Proposal + +<!-- Use this section to explain the feature and how it will work. It can be helpful to add technical details, design proposals, and links to related epics or issues. --> + +### Relevant logs and/or screenshots + +(Paste any relevant logs - please use code blocks (```) to format console output,logs, and code as it's very hard to read otherwise.) + +### Possible fixes + +(If you can, link to the line of code that might be responsible for the problem) + +/label ~feature -- GitLab