[Bf-blender-cvs] [8f7bb812c46] master: Gitea: Add Issue and Pull Request templates

Sergey Sharybin noreply at git.blender.org
Wed Jan 11 11:49:21 CET 2023


Commit: 8f7bb812c461d04bef1f0f69495267501de4a3e7
Author: Sergey Sharybin
Date:   Wed Jan 11 11:46:53 2023 +0100
Branches: master
https://developer.blender.org/rB8f7bb812c461d04bef1f0f69495267501de4a3e7

Gitea: Add Issue and Pull Request templates

It is a part of the Phabricator to Gitea migration.

The issue template is based on the bug submission instructions which
are shown in the Phabricator's bug submission form. Some further tweaks
are likely needed, but the current version of the template simplifies
re-iteration while working on the migration.

The pull request template is needed to override the template in the
.github folder which is otherwise picked up by Gitea.

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

A	.gitea/issue_template.yaml
A	.gitea/pull_request_template.md

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

diff --git a/.gitea/issue_template.yaml b/.gitea/issue_template.yaml
new file mode 100644
index 00000000000..08b98a0112e
--- /dev/null
+++ b/.gitea/issue_template.yaml
@@ -0,0 +1,45 @@
+name: Bug Report
+about: File a bug report
+labels:
+  - bug
+ref: master
+body:
+  - type: markdown
+    attributes:
+      value: |
+                ### First time bug reporting?
+                Read [these tips](https://wiki.blender.org/wiki/Process/Bug_Reports) and watch this **[How to Report a Bug](https://www.youtube.com/watch?v=JTD0OJq_rF4)** video to make a complete, valid bug report. Remember to write your bug report in **English**.
+
+                ### What not to report here
+                For feature requests, feedback, questions or issues building Blender, see [communication channels](https://wiki.blender.org/wiki/Communication/Contact#User_Feedback_and_Requests).
+
+                ### Please verify
+                * Always test with the latest official release from [blender.org](https://www.blender.org/) and daily build from [builder.blender.org](https://builder.blender.org/).
+                * Please use `Help > Report a Bug` in Blender to automatically fill system information and exact Blender version.
+                * Test [previous Blender versions](https://download.blender.org/release/) to find the latest version that was working as expected.
+                * Find steps to redo the bug consistently without any non-official add-ons, and include a **small and simple .blend file** to demonstrate the bug.
+                * If there are multiple bugs, make multiple bug reports.
+                * Sometimes, driver or software upgrades cause problems. On Windows, try a clean install of the graphics drivers.
+
+                ### Help the developers
+                Bug fixing is important, the developers will handle a report swiftly. For that reason, we need your help to carefully provide instructions that others can follow quickly. You do your half of the work, then we do our half!
+
+                If a report is tagged with Needs Information from User and it has no reply after a week, we will assume the issue is gone and close the report.
+
+  - type: textarea
+    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).
+
diff --git a/.gitea/pull_request_template.md b/.gitea/pull_request_template.md
new file mode 100644
index 00000000000..a6614b8ef00
--- /dev/null
+++ b/.gitea/pull_request_template.md
@@ -0,0 +1,4 @@
+---
+name: Pull Request
+about: Submit a pull request
+---



More information about the Bf-blender-cvs mailing list