commit 72b9c5a2516f61db4aee81e2c5d5af19cfa99f8e Author: Felix Kirchner Date: Fri May 22 13:12:00 2026 +0000 .gitea/pull_request_template.yaml hinzugefügt diff --git a/.gitea/pull_request_template.yaml b/.gitea/pull_request_template.yaml new file mode 100644 index 0000000..fa29c3e --- /dev/null +++ b/.gitea/pull_request_template.yaml @@ -0,0 +1,68 @@ +name: Pull Request +about: Vorlage für Pull Requests +title: "WIP: [Name des Issues]" + +body: + - type: input + id: related_issue + attributes: + label: Zugehörige Issue(s) + description: Issues welche mit diesem Pull Request geschlossen werden sollen + placeholder: "Closes #123" + validations: + required: true + + - type: textarea + id: description + attributes: + label: Beschreibung + description: | + Eine klare und prägnante Zusammenfassung aller vorgenommenen Änderungen. + placeholder: | + Was wurde geändert? + validations: + required: true + + - type: textarea + id: changes + attributes: + label: Änderungen + description: Liste alle Änderungen detailiert auf, die in diesem Pull Request vorgenommen wurden. + placeholder: | + - Neue Funktion X hinzugefügt + - Bug in Komponente X behoben + - Modul X für bessere Leistung refactored + - Dependencies aktualisiert + + - type: checkboxes + id: checklist + attributes: + label: PR-Checkliste + # hide_label: true + description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com) + options: + - label: Ich habe alle Strings lokalisiert (de/en) + required: true + - label: Ich habe die Testdaten aktualisiert oder erweitert + required: true + - label: Ich habe das JSON-Schema angepasst + required: true + - label: Ich habe Tests für neue Datenbank/DAO-Funktionen hinzugefügt + required: true + - label: I have also read the CONTRIBUTION.MD + required: true + visible: [form] + - label: This is a TODO only visible after issue creation + visible: [content] + + - type: textarea + id: additional_notes + attributes: + label: Zusätzliche Anmerkungen + description: | + Gibt es zusätzlichen Kontext, Einschränkungen oder Informationen, + die Reviewer wissen sollten? + placeholder: | + - Bekannte Einschränkungen + - Offene TODOs + - Hinweise für Reviewer