From 45edd05422f9b569828204c5634ff51052ba4f53 Mon Sep 17 00:00:00 2001 From: Marius Isken Date: Wed, 24 Mar 2021 11:09:10 +0100 Subject: [PATCH] gitea: adding issue and PR templates --- .gitea/issue_template.md | 22 ++++++++++++++++++++++ .gitea/pull_request_template.md | 30 ++++++++++++++++++++++++++++++ 2 files changed, 52 insertions(+) create mode 100644 .gitea/issue_template.md create mode 100644 .gitea/pull_request_template.md diff --git a/.gitea/issue_template.md b/.gitea/issue_template.md new file mode 100644 index 00000000..3e98e5bd --- /dev/null +++ b/.gitea/issue_template.md @@ -0,0 +1,22 @@ +## *Who* is the bug affecting? + + +## *What* is affected by this bug? + + +## *When* does this occur? + + +## *Where* on the platform does it happen? + + + +## *How* do we replicate the issue? + + + +## Expected behavior (i.e. solution) + + + +## Other Comments diff --git a/.gitea/pull_request_template.md b/.gitea/pull_request_template.md new file mode 100644 index 00000000..8c6dc7eb --- /dev/null +++ b/.gitea/pull_request_template.md @@ -0,0 +1,30 @@ + + +## Description + + +## Motivation and Context + + + +## How has this been tested? + + + + +## Screenshots (if appropriate): + +## Types of changes + +- [ ] Bug fix (non-breaking change which fixes an issue) +- [ ] New feature (non-breaking change which adds functionality) +- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) + +## Checklist: + + +- [ ] My code follows the code style of this project. +- [ ] My change requires a change to the documentation. +- [ ] I have added unit tests and all tests pass. +- [ ] I have updated the documentation accordingly. +- [ ] I have updated the changelog accordingly.