From 521b38c55052f3eddb9a73e146f3774afd1a2ba0 Mon Sep 17 00:00:00 2001 From: "M.V. Hutz" Date: Sun, 29 Mar 2026 22:19:46 +0200 Subject: [PATCH] ci: issue templates, issue config --- .gitea/ISSUE_TEMPLATE/BUG_REPORT.yml | 26 +++++++++++++ .gitea/ISSUE_TEMPLATE/FEATURE_REQUEST.yml | 45 +++++++++++++++++++++++ .gitea/ISSUE_TEMPLATE/config.yml | 2 + 3 files changed, 73 insertions(+) create mode 100644 .gitea/ISSUE_TEMPLATE/BUG_REPORT.yml create mode 100644 .gitea/ISSUE_TEMPLATE/FEATURE_REQUEST.yml create mode 100644 .gitea/ISSUE_TEMPLATE/config.yml diff --git a/.gitea/ISSUE_TEMPLATE/BUG_REPORT.yml b/.gitea/ISSUE_TEMPLATE/BUG_REPORT.yml new file mode 100644 index 0000000..8868ab6 --- /dev/null +++ b/.gitea/ISSUE_TEMPLATE/BUG_REPORT.yml @@ -0,0 +1,26 @@ +# yaml-language-server: $schema=https://www.schemastore.org/gitea-issue-forms.json +name: 🐛 Bug Report +about: Report a bug in this project +title: "[BUG]: " +body: + - type: textarea + id: context + attributes: + label: Context + description: What circumstances led to the bug? + validations: + required: true + - type: textarea + id: expected-behavior + attributes: + label: Expected Behavior + description: What did you expect would happen? + validations: + required: true + - type: textarea + id: actual-behavior + attributes: + label: Actual Behavior + description: What happened, and why was it unexpected? + validations: + required: true diff --git a/.gitea/ISSUE_TEMPLATE/FEATURE_REQUEST.yml b/.gitea/ISSUE_TEMPLATE/FEATURE_REQUEST.yml new file mode 100644 index 0000000..2473b0d --- /dev/null +++ b/.gitea/ISSUE_TEMPLATE/FEATURE_REQUEST.yml @@ -0,0 +1,45 @@ +# 'Feature Request Template' By @cheehwatang +# https://github.com/cheehwatang/.github/blob/master/.github/ISSUE_TEMPLATE/feature_request.yml +# +# yaml-language-server: $schema=https://www.schemastore.org/gitea-issue-forms.json +name: ✨ Feature Request +about: Suggest an idea for this project +title: "[FEATURE]: " +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this feature request! 🤗 + + Please make sure this feature request hasn't been already submitted by + someone by looking through other open/closed issues. 😃 + - type: dropdown + attributes: + multiple: false + label: Type of Feature + description: Select the type of feature request. + options: + - "✨ New Feature" + - "📝 Documentation" + - "🎨 Style and UI" + - "🔨 Code Refactor" + - "⚡ Performance Improvements" + - "✅ New Test" + validations: + required: true + - type: textarea + id: description + attributes: + label: Description + description: | + Give us a brief description of the feature or enhancement you would + like! + validations: + required: true + - type: textarea + id: additional-information + attributes: + label: Additional Information + description: | + Give us some additional information on the feature request like proposed + solutions, links, screenshots, etc. diff --git a/.gitea/ISSUE_TEMPLATE/config.yml b/.gitea/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..f2ee47f --- /dev/null +++ b/.gitea/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,2 @@ +# yaml-language-server: $schema=https://www.schemastore.org/gitea-issue-config.json +blank_issues_enabled: true \ No newline at end of file