From 665732115ec5779e121333fb3a9f34f141c1d06b Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Tue, 17 Jan 2023 19:31:00 +0100 Subject: [PATCH] Gitea: add separate issue templates for bug, design and todo --- .../{issue_template.yaml => issue_template/bug.yaml} | 1 + .gitea/issue_template/design.yaml | 10 ++++++++++ .gitea/issue_template/todo.yaml | 10 ++++++++++ 3 files changed, 21 insertions(+) rename .gitea/{issue_template.yaml => issue_template/bug.yaml} (99%) create mode 100644 .gitea/issue_template/design.yaml create mode 100644 .gitea/issue_template/todo.yaml diff --git a/.gitea/issue_template.yaml b/.gitea/issue_template/bug.yaml similarity index 99% rename from .gitea/issue_template.yaml rename to .gitea/issue_template/bug.yaml index 08b98a0112e..41cc6a4ed74 100644 --- a/.gitea/issue_template.yaml +++ b/.gitea/issue_template/bug.yaml @@ -27,6 +27,7 @@ body: 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 + id: body attributes: label: "Description" value: | diff --git a/.gitea/issue_template/design.yaml b/.gitea/issue_template/design.yaml new file mode 100644 index 00000000000..b482c8fad42 --- /dev/null +++ b/.gitea/issue_template/design.yaml @@ -0,0 +1,10 @@ +name: Design +about: Create a design task (for developers only) +labels: + - design +ref: master +body: + - type: textarea + id: body + attributes: + label: "Description" diff --git a/.gitea/issue_template/todo.yaml b/.gitea/issue_template/todo.yaml new file mode 100644 index 00000000000..8c08d897b2b --- /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: + - todo +ref: master +body: + - type: textarea + id: body + attributes: + label: "Description"