From c834f004a28b9ee5f0bdce096395125a925c9bcc Mon Sep 17 00:00:00 2001 From: "M.V. Hutz" Date: Fri, 3 Apr 2026 13:57:03 +0000 Subject: [PATCH] chore: no free form issues, 'description'-s to 'placeholders'-s (#16) ## Description There were some problems with the roll-out of the issue templates. This PR addresses them. ## Changes - Disable `blank-issue-enabled`. - Move all `description` types in the issue templates to `placeholder`. ### Design Decisions - The `description` fields take up too much space. ## Checklist - [x] Tests pass - [x] Docs updated Reviewed-on: https://git.maximhutz.com/tools/go-cuckoo/pulls/16 Co-authored-by: M.V. Hutz Co-committed-by: M.V. Hutz --- .gitea/ISSUE_TEMPLATE/BUG_REPORT.yml | 6 +++--- .gitea/ISSUE_TEMPLATE/FEATURE_REQUEST.yml | 14 +++----------- .gitea/ISSUE_TEMPLATE/config.yml | 2 +- 3 files changed, 7 insertions(+), 15 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 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. 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