From 15bcca32926f67bf174a17810e431b57de74a987 Mon Sep 17 00:00:00 2001 From: Tomas Vik Date: Wed, 24 Jun 2020 05:45:01 +0000 Subject: [PATCH] Add issue templates for Features/Bugs --- .gitlab/issue_templates/Bug.md | 36 +++++++++++++++++++++ .gitlab/issue_templates/Feature Proposal.md | 27 ++++++++++++++++ 2 files changed, 63 insertions(+) create mode 100644 .gitlab/issue_templates/Bug.md create mode 100644 .gitlab/issue_templates/Feature Proposal.md diff --git a/.gitlab/issue_templates/Bug.md b/.gitlab/issue_templates/Bug.md new file mode 100644 index 0000000..63f76b3 --- /dev/null +++ b/.gitlab/issue_templates/Bug.md @@ -0,0 +1,36 @@ + + +### Summary + +(Summarize the bug encountered concisely) + +### Steps to reproduce + +(How one can reproduce the issue - this is very important) + +### What is the current *bug* behavior? + +(What actually happens) + +### What is the expected *correct* behavior? + +(What you should see instead) + +### Relevant logs and/or screenshots + +(Logs can be found by running `Developer: Show Logs ...` command (using `cmd+shift+p`) and selecting `Extension Host`) + +### Possible fixes + +(If you can, link to the line of code that might be responsible for the problem) + +/label ~bug ~"devops::create" ~"group::editor" ~"Category:Editor Extension" ~"VS Code" diff --git a/.gitlab/issue_templates/Feature Proposal.md b/.gitlab/issue_templates/Feature Proposal.md new file mode 100644 index 0000000..c71a677 --- /dev/null +++ b/.gitlab/issue_templates/Feature Proposal.md @@ -0,0 +1,27 @@ + + +### Problem to solve + + + + +### Proposal + + + +### Further details + + + +### Links / references + +/label ~feature ~"devops::create" ~"group::editor" ~"Category:Editor Extension" ~"VS Code" -- GitLab