From 7488177c065464220c723a88f83c00e720aee1ff Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 11 Jan 2026 18:48:57 +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 | 50 +++++++++++++++++++++++++++++++ 1 file changed, 50 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..4d98f84 --- /dev/null +++ b/.gitea/pull_request_template.yaml @@ -0,0 +1,50 @@ +name: Pull Request +about: Vorlage für Pull Requests +title: "[Name des Issues]" +labels: [] + +body: + - type: input + id: related_issue + attributes: + label: Zugehörige Issue(s) + description: Verknüpfe die relevanten Issues + placeholder: "Closes #123" + validations: + required: true + + - type: textarea + id: description + attributes: + label: Beschreibung + description: > + Eine klare und prägnante Übersicht über die vorgenommenen Änderungen. + Erläutere nicht nur was gemacht wurde, sondern auch warum. + placeholder: | + Was wurde geändert? + Warum war diese Änderung notwendig? + validations: + required: true + + - type: checkboxes + id: changes + attributes: + label: Änderungen + description: Wähle alle zutreffenden Punkte aus + options: + - label: Neue Funktion X hinzugefügt + - label: Bug in Komponente Y behoben + - label: Modul Z für bessere Leistung refactored + - label: Dependencies aktualisiert + + - 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