From bdb34c98041dd1185a9c5f599e89bf04cfa9c0ea Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Wed, 18 Jan 2023 01:33:33 +0100 Subject: [PATCH] Gitea: add more complete pull request template --- .gitea/pull_request_template.md | 4 ---- .gitea/pull_request_template.yaml | 19 +++++++++++++++++++ 2 files changed, 19 insertions(+), 4 deletions(-) delete mode 100644 .gitea/pull_request_template.md create mode 100644 .gitea/pull_request_template.yaml diff --git a/.gitea/pull_request_template.md b/.gitea/pull_request_template.md deleted file mode 100644 index a6614b8ef00..00000000000 --- a/.gitea/pull_request_template.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -name: Pull Request -about: Submit a pull request ---- diff --git a/.gitea/pull_request_template.yaml b/.gitea/pull_request_template.yaml new file mode 100644 index 00000000000..f7c3242f55c --- /dev/null +++ b/.gitea/pull_request_template.yaml @@ -0,0 +1,19 @@ +name: Pull Request +about: Contribute code to Blender +ref: master +body: + - type: markdown + attributes: + value: | + Guides to [Contributing Code](https://wiki.blender.org/index.php/Dev:Doc/Process/Contributing_Code) and effective [Code Review](https://wiki.blender.org/index.php/Dev:Doc/Tools/Code_Review). + + By submitting code here, **you agree that the code is (compatible with) GNU GPL v2 or later**. + + - type: textarea + id: body + attributes: + label: "Description" + value: | + Description of the problem that is addressed in the patch. + + Description of the proposed solution and its implementation.