[Bf-extensions-cvs] [e6e204ef] master: Gitea: add issue and pull request templates

Brecht Van Lommel noreply at git.blender.org
Wed Jan 18 18:45:16 CET 2023


Commit: e6e204ef0ed78a8381f446e7d0204b84b4d50e16
Author: Brecht Van Lommel
Date:   Wed Jan 18 18:44:03 2023 +0100
Branches: master
https://developer.blender.org/rBAe6e204ef0ed78a8381f446e7d0204b84b4d50e16

Gitea: add issue and pull request templates

===================================================================

A	.gitea/issue_template/bug.yaml
A	.gitea/pull_request_template.yaml

===================================================================

diff --git a/.gitea/issue_template/bug.yaml b/.gitea/issue_template/bug.yaml
new file mode 100644
index 00000000..6e637d1a
--- /dev/null
+++ b/.gitea/issue_template/bug.yaml
@@ -0,0 +1,41 @@
+name: Add-on Bug Report
+about: File a bug report for an add-on bundled with Blender
+labels:
+  - bug
+body:
+  - type: markdown
+    attributes:
+      value: |
+                ### Instructions
+                First time reporting? See [tips](https://wiki.blender.org/wiki/Process/Bug_Reports) and [walkthrough video](https://www.youtube.com/watch?v=JTD0OJq_rF4).
+
+                * Use **Help > Report a Bug** in Blender to fill system information and exact Blender version.
+                * Test [daily builds](https://builder.blender.org/) to verify if the issue is already fixed.
+                * Test [previous versions](https://download.blender.org/release/) to find an older working version.
+                * For feature requests, feedback, questions or build issues, see [communication channels](https://wiki.blender.org/wiki/Communication/Contact#User_Feedback_and_Requests).
+                * If there are multiple bugs, make multiple bug reports.
+
+  - type: textarea
+    id: body
+    attributes:
+      label: "Description"
+      value: |
+               **System Information**
+               Operating system:
+               Graphics card:
+
+               **Blender Version**
+               Broken: (example: 2.80, edbf15d3c044, master, 2018-11-28, as found on the splash screen)
+               Worked: (newest version of Blender that worked as expected)
+
+               **Short description of error**
+
+               **Exact steps for others to reproduce the error**
+               Based on the default startup or an attached .blend file (as simple as possible).
+
+  - type: markdown
+    attributes:
+      value: |
+                ### Help the developers
+
+                Bug fixing is important, the developers will handle reports swiftly. For that reason, carefully provide exact steps and a **small and simple .blend file** to reproduce the problem. You do your half of the work, then we do our half!
diff --git a/.gitea/pull_request_template.yaml b/.gitea/pull_request_template.yaml
new file mode 100644
index 00000000..49ccff3a
--- /dev/null
+++ b/.gitea/pull_request_template.yaml
@@ -0,0 +1,22 @@
+name: Pull Request
+about: Contribute to add-ons bundled with Blender
+body:
+  - type: markdown
+    attributes:
+      value: |
+        ### Instructions
+
+        * [Contributing a new add-on](https://wiki.blender.org/wiki/Process/Addons)
+        * [Contributing code](https://wiki.blender.org/index.php/Dev:Doc/Process/Contributing_Code)
+        * [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.



More information about the Bf-extensions-cvs mailing list