From 16a45e67e68a66ef237255511c927b99d20191c9 Mon Sep 17 00:00:00 2001 From: Jordan Bancino Date: Sat, 9 Sep 2023 15:28:33 -0400 Subject: [PATCH] Add Gitea issue templates. --- .gitea/issue_template/bug_report.yaml | 47 ++++++++++++++++++++++ .gitea/issue_template/config.yaml | 7 ++++ .gitea/issue_template/feature_request.yaml | 18 +++++++++ 3 files changed, 72 insertions(+) create mode 100644 .gitea/issue_template/bug_report.yaml create mode 100644 .gitea/issue_template/config.yaml create mode 100644 .gitea/issue_template/feature_request.yaml diff --git a/.gitea/issue_template/bug_report.yaml b/.gitea/issue_template/bug_report.yaml new file mode 100644 index 0000000..8f468ad --- /dev/null +++ b/.gitea/issue_template/bug_report.yaml @@ -0,0 +1,47 @@ +name: Bug Report +about: File a bug report regarding Telodendria, its website, or its documentation. +body: + - type: markdown + attributes: + value: | + You are submitting a bug report. Please be sure to fill out the + title with a brief description of the bug. + - type: dropdown + attributes: + label: Type + description: Select the type of issue. + options: + - Memory Leak + - Crash + - Unexpected Error Message + - Documentation + - Website + - Other + validations: + required: true + - type: textarea + attributes: + label: Description + description: | + Please give a thorough and detailed description of the bug you + are reporting. Provide all the information you have, and do + some investigating to ensure you are providing a legitimate + issue report that is well thought out. + validations: + required: true + - type: textarea + attributes: + label: Log Output + description: | + Please copy and paste the relevant sections of the log output, + or the entire log if it is not unreasonably large. The logs + will be automatically formatted, no code block is necessary. + render: shell + validations: + required: true + - type: markdown + attributes: + value: | + Please attach any additional files that may aid in our + investigation of this issue, including screenshots, debugging + session stack traces and dumps, etc. diff --git a/.gitea/issue_template/config.yaml b/.gitea/issue_template/config.yaml new file mode 100644 index 0000000..2f86391 --- /dev/null +++ b/.gitea/issue_template/config.yaml @@ -0,0 +1,7 @@ +blank_issues_enabled: true +contact_links: + - name: General Matrix Room + - url: https://matrix.to/#/#telodendria-general:bancino.net + - about: | + General discussion on Telodendria happens in this Matrix room. You + may get quicker feedback from there. diff --git a/.gitea/issue_template/feature_request.yaml b/.gitea/issue_template/feature_request.yaml new file mode 100644 index 0000000..db9a188 --- /dev/null +++ b/.gitea/issue_template/feature_request.yaml @@ -0,0 +1,18 @@ +name: Feature Request +about: Request a new feature or enhancement be added to Telodendria. +title: "[Feature] " +body: + - type: markdown + attributes: + value: | + You are submitting a feature request. Please be sure to fill + out the title with a brief description of the feature you are + requesting. + - type: textarea + attributes: + label: Description + description: | + Please give a thorough and detailed description of the feature + you are requesting. + validations: + required: true