From 0002c5acfd5fce61d5f6369adf3379de83a5bbf6 Mon Sep 17 00:00:00 2001
From: Jochem Snuverink <jochem.snuverink@psi.ch>
Date: Fri, 26 Apr 2019 11:02:25 +0200
Subject: [PATCH] Templates for issues and merge requests

---
 .gitlab/issue_templates/Bug.md             | 31 ++++++++++++++++++++++
 .gitlab/issue_templates/Feature.md         |  7 +++++
 .gitlab/merge_request_templates/Bug.md     |  9 +++++++
 .gitlab/merge_request_templates/Feature.md | 10 +++++++
 4 files changed, 57 insertions(+)
 create mode 100644 .gitlab/issue_templates/Bug.md
 create mode 100644 .gitlab/issue_templates/Feature.md
 create mode 100644 .gitlab/merge_request_templates/Bug.md
 create mode 100644 .gitlab/merge_request_templates/Feature.md

diff --git a/.gitlab/issue_templates/Bug.md b/.gitlab/issue_templates/Bug.md
new file mode 100644
index 000000000..c180ca4ee
--- /dev/null
+++ b/.gitlab/issue_templates/Bug.md
@@ -0,0 +1,31 @@
+### 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
+
+(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 ~Bug
diff --git a/.gitlab/issue_templates/Feature.md b/.gitlab/issue_templates/Feature.md
new file mode 100644
index 000000000..42d6d3491
--- /dev/null
+++ b/.gitlab/issue_templates/Feature.md
@@ -0,0 +1,7 @@
+### Summary
+
+(Summarize the feature request concisely)
+
+
+
+/label ~"Feature request"
\ No newline at end of file
diff --git a/.gitlab/merge_request_templates/Bug.md b/.gitlab/merge_request_templates/Bug.md
new file mode 100644
index 000000000..a2fa1589e
--- /dev/null
+++ b/.gitlab/merge_request_templates/Bug.md
@@ -0,0 +1,9 @@
+### What does this MR do?
+
+### Does this MR meet the acceptance criteria?
+
+* [ ] [Coding style guidelines](https://gitlab.psi.ch/OPAL/src/wikis/For-Developers/CodingStyle)
+* [ ] [Change to Release Notes](https://gitlab.psi.ch/OPAL/src/wikis/ReleaseNotes/ReleaseNotes)
+
+
+/label ~Bug
diff --git a/.gitlab/merge_request_templates/Feature.md b/.gitlab/merge_request_templates/Feature.md
new file mode 100644
index 000000000..041e9ef4c
--- /dev/null
+++ b/.gitlab/merge_request_templates/Feature.md
@@ -0,0 +1,10 @@
+### What does this MR do?
+
+### Does this MR meet the acceptance criteria?
+
+* [ ] [Coding style guidelines](https://gitlab.psi.ch/OPAL/src/wikis/For-Developers/CodingStyle)
+* [ ] [Change to Release Notes](https://gitlab.psi.ch/OPAL/src/wikis/ReleaseNotes/ReleaseNotes)
+* [ ] Documentation added
+
+
+/label ~"Feature request"
-- 
GitLab