From 72b9c5a2516f61db4aee81e2c5d5af19cfa99f8e Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Fri, 22 May 2026 13:12:00 +0000 Subject: [PATCH] =?UTF-8?q?.gitea/pull=5Frequest=5Ftemplate.yaml=20hinzuge?= =?UTF-8?q?f=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/pull_request_template.yaml | 68 +++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 .gitea/pull_request_template.yaml 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