From 4033aba10a85cd5c1a30aa7c9302bcfd201a3448 Mon Sep 17 00:00:00 2001 From: Ninosaurier Date: Fri, 4 Sep 2026 11:16:11 +0200 Subject: [PATCH] chore(.gitea): Added Templates for issues and PRs --- .gitea/templates/ISSUE_TEMPLATE.md | 37 +++++++++++++++++++++++ .gitea/templates/PULL_REQUEST_TEMPLATE.md | 34 +++++++++++++++++++++ 2 files changed, 71 insertions(+) create mode 100644 .gitea/templates/ISSUE_TEMPLATE.md create mode 100644 .gitea/templates/PULL_REQUEST_TEMPLATE.md diff --git a/.gitea/templates/ISSUE_TEMPLATE.md b/.gitea/templates/ISSUE_TEMPLATE.md new file mode 100644 index 0000000..560fe16 --- /dev/null +++ b/.gitea/templates/ISSUE_TEMPLATE.md @@ -0,0 +1,37 @@ + +## Goal + + + +## Description + + + +## Steps to Reproduce + + + +## Expected Behaviour + + + +## Actual Behaviour + + + +## Tasks + +- [ ] ... +- [ ] ... +- [ ] ... +- [ ] Update the related parts of the documentation + +## Acceptance Criteria + +- ... +- ... +- ... diff --git a/.gitea/templates/PULL_REQUEST_TEMPLATE.md b/.gitea/templates/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..7075685 --- /dev/null +++ b/.gitea/templates/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,34 @@ + +## Description + + + +## Related Issue + + + +## Type of Change + +- [ ] Bug fix +- [ ] New feature +- [ ] Refactoring (no functional changes) +- [ ] Documentation +- [ ] Tests + +## Changes + +- ... +- ... +- ... + +## How Has This Been Tested? + + + +## Checklist + +- [ ] Code follows the project's style guidelines +- [ ] Self-review of the code has been performed +- [ ] Tests have been added/updated and pass locally +- [ ] Documentation has been updated where necessary +- [ ] No new warnings or errors introduced