Some checks failed
CI / Check PR Title (push) Failing after 19s
CI / Makefile Lint (push) Successful in 34s
CI / Go Lint (push) Successful in 37s
CI / Markdown Lint (push) Successful in 35s
CI / Unit Tests (push) Successful in 33s
CI / Fuzz Tests (push) Successful in 1m4s
CI / Mutation Tests (push) Successful in 2m55s
## 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: #16 Co-authored-by: M.V. Hutz <git@maximhutz.me> Co-committed-by: M.V. Hutz <git@maximhutz.me>
38 lines
1.1 KiB
YAML
38 lines
1.1 KiB
YAML
# '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: dropdown
|
|
attributes:
|
|
multiple: false
|
|
label: Feature Type
|
|
options:
|
|
- "✨ New Feature"
|
|
- "📝 Documentation"
|
|
- "🎨 Style and UI"
|
|
- "🔨 Code Refactor"
|
|
- "⚡ Performance Improvements"
|
|
- "✅ New Test"
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: description
|
|
attributes:
|
|
label: Description
|
|
placeholder: |
|
|
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
|
|
placeholder: |
|
|
Give us some additional information on the feature request like proposed
|
|
solutions, links, screenshots, etc.
|