From 4a2d1d47a6f3d3818b493e1c87bf5e71852a48b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Tue, 7 Feb 2023 17:30:00 +0100 Subject: [PATCH] Simple Gitea issue templates Just to get something better than a blank form. --- .gitea/issue_template/bug.yaml | 33 +++++++++++++++++++++++++++++++ .gitea/issue_template/config.yaml | 1 + .gitea/issue_template/design.yaml | 10 ++++++++++ .gitea/issue_template/todo.yaml | 10 ++++++++++ 4 files changed, 54 insertions(+) create mode 100644 .gitea/issue_template/bug.yaml create mode 100644 .gitea/issue_template/config.yaml create mode 100644 .gitea/issue_template/design.yaml create mode 100644 .gitea/issue_template/todo.yaml diff --git a/.gitea/issue_template/bug.yaml b/.gitea/issue_template/bug.yaml new file mode 100644 index 00000000..f5ff716b --- /dev/null +++ b/.gitea/issue_template/bug.yaml @@ -0,0 +1,33 @@ +name: Bug Report +about: File a bug report +labels: + - "type::Report" + - "status::Needs Triage" + - "priority::Normal" +body: + - type: markdown + attributes: + value: | + ### Instructions + First time reporting? See [tips](https://wiki.blender.org/wiki/Process/Bug_Reports). + + * Include your system information below. + * If there are multiple bugs, make multiple bug reports. + + - type: textarea + id: body + attributes: + label: "Description" + hide_label: true + value: | + **System Information** + Operating System(s): + + **Flamenco Version** + Is Broken: + Worked OK: + + **Short description of error** + + **Exact steps for others to reproduce the error** + diff --git a/.gitea/issue_template/config.yaml b/.gitea/issue_template/config.yaml new file mode 100644 index 00000000..3ba13e0c --- /dev/null +++ b/.gitea/issue_template/config.yaml @@ -0,0 +1 @@ +blank_issues_enabled: false diff --git a/.gitea/issue_template/design.yaml b/.gitea/issue_template/design.yaml new file mode 100644 index 00000000..a1dcd8b0 --- /dev/null +++ b/.gitea/issue_template/design.yaml @@ -0,0 +1,10 @@ +name: Design +about: Create a design task (for developers only) +labels: + - "type::Design" +body: + - type: textarea + id: body + attributes: + label: "Description" + hide_label: true diff --git a/.gitea/issue_template/todo.yaml b/.gitea/issue_template/todo.yaml new file mode 100644 index 00000000..58e848c3 --- /dev/null +++ b/.gitea/issue_template/todo.yaml @@ -0,0 +1,10 @@ +name: To Do +about: Create a to do task (for developers only) +labels: + - "type::To Do" +body: + - type: textarea + id: body + attributes: + label: "Description" + hide_label: true