From 63bbbde064c95f4bb90d00caf5ad5827628ec78f Mon Sep 17 00:00:00 2001 From: Jeroen De Meerleer Date: Fri, 24 Jun 2022 14:17:33 +0200 Subject: [PATCH] ENHANCEMENT: created issue_templates --- .github/issue_template/Bug.md | 23 +++++++++++++++++++++++ .github/issue_template/Feature request.md | 19 +++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 .github/issue_template/Bug.md create mode 100644 .github/issue_template/Feature request.md diff --git a/.github/issue_template/Bug.md b/.github/issue_template/Bug.md new file mode 100644 index 0000000..34fc052 --- /dev/null +++ b/.github/issue_template/Bug.md @@ -0,0 +1,23 @@ +--- + +name: "Bug" +about: "Release a bug from the system" +title: "Bug: (( Short description of the bug ))" +ref: "main" +labels: + +- bug + +--- + +(( Long description of the bug )) + +## Steps to reproduce +1. (( Step by step instructions of how to trigger the bug )) +2. (( Overly logical steps like "log in to the app" may be included and are not considered as waste of disk space )) + +## Expected results +* (( Expected results of when applying the steps to reproduce )) + +## Actual results +* (( Actual results of when applying the steps to reproduce )) diff --git a/.github/issue_template/Feature request.md b/.github/issue_template/Feature request.md new file mode 100644 index 0000000..df30a82 --- /dev/null +++ b/.github/issue_template/Feature request.md @@ -0,0 +1,19 @@ +--- + +name: "Feature request" +about: "Request a new feature" +title: "Feature request: (( Short description of the feature ))" +ref: "main" +labels: + +- enhancement + +--- + +(( Long description of the feature )) + +## Why do we need this? +(( Reasons why this feature is needed )) + +## Design +(( Description of how this technically or functionally may be implemented ))