From fa3eff08fb9ac00657fc85602a8360ee4d5ce7aa Mon Sep 17 00:00:00 2001 From: "M.V. Hutz" Date: Fri, 3 Apr 2026 15:49:48 +0200 Subject: [PATCH 1/3] chore: moved description to placeholder --- .gitea/ISSUE_TEMPLATE/FEATURE_REQUEST.yml | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/.gitea/ISSUE_TEMPLATE/FEATURE_REQUEST.yml b/.gitea/ISSUE_TEMPLATE/FEATURE_REQUEST.yml index 2473b0d..a5eb9cb 100644 --- a/.gitea/ISSUE_TEMPLATE/FEATURE_REQUEST.yml +++ b/.gitea/ISSUE_TEMPLATE/FEATURE_REQUEST.yml @@ -6,18 +6,10 @@ 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. + label: Feature Type options: - "✨ New Feature" - "📝 Documentation" @@ -31,7 +23,7 @@ body: id: description attributes: label: Description - description: | + placeholder: | Give us a brief description of the feature or enhancement you would like! validations: @@ -40,6 +32,6 @@ body: id: additional-information attributes: label: Additional Information - description: | + placeholder: | Give us some additional information on the feature request like proposed solutions, links, screenshots, etc. -- 2.49.1 From b220357c18215cd74daaf4e3c8dbcfca752ae0ba Mon Sep 17 00:00:00 2001 From: "M.V. Hutz" Date: Fri, 3 Apr 2026 15:50:30 +0200 Subject: [PATCH 2/3] chore: ditto for 'BUG REPORT' --- .gitea/ISSUE_TEMPLATE/BUG_REPORT.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/ISSUE_TEMPLATE/BUG_REPORT.yml b/.gitea/ISSUE_TEMPLATE/BUG_REPORT.yml index 8868ab6..40a47f1 100644 --- a/.gitea/ISSUE_TEMPLATE/BUG_REPORT.yml +++ b/.gitea/ISSUE_TEMPLATE/BUG_REPORT.yml @@ -7,20 +7,20 @@ body: id: context attributes: label: Context - description: What circumstances led to the bug? + placeholder: 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? + placeholder: 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? + placeholder: What happened, and why was it unexpected? validations: required: true -- 2.49.1 From 977bd25e9aa51e9677aa196479bdc3c5448d8765 Mon Sep 17 00:00:00 2001 From: "M.V. Hutz" Date: Fri, 3 Apr 2026 15:52:47 +0200 Subject: [PATCH 3/3] fix: disable blank issue forms --- .gitea/ISSUE_TEMPLATE/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/ISSUE_TEMPLATE/config.yml b/.gitea/ISSUE_TEMPLATE/config.yml index f2ee47f..8f2161f 100644 --- a/.gitea/ISSUE_TEMPLATE/config.yml +++ b/.gitea/ISSUE_TEMPLATE/config.yml @@ -1,2 +1,2 @@ # yaml-language-server: $schema=https://www.schemastore.org/gitea-issue-config.json -blank_issues_enabled: true \ No newline at end of file +blank_issues_enabled: false \ No newline at end of file -- 2.49.1