-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Combine user and dev feature request form.
- Loading branch information
1 parent
1edc82c
commit efa29fc
Showing
2 changed files
with
38 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,53 @@ | ||
name: "💡 Suggest a Feature" | ||
description: "Suggest a new feature or improvement for Hawk" | ||
title: "Feature: " | ||
labels: ["enhancement", "triage", "external"] | ||
labels: ["type/feature", "status/backlog"] | ||
body: | ||
- type: textarea | ||
id: problem | ||
attributes: | ||
label: What problem would this feature solve? | ||
placeholder: Clear description of the current limitation/problem | ||
placeholder: "Clear description of the current limitation/problem" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: solution | ||
attributes: | ||
label: Proposed Solution | ||
description: How would you like this to work? | ||
label: "Proposed Solution" | ||
description: "How would you like this to work?" | ||
validations: | ||
required: true | ||
- type: markdown | ||
attributes: | ||
value: "--- | ||
### ⚙️ Developer Section (For Hawk Team Members Only) | ||
*The following sections are for internal use by the Hawk development team. Users can ignore these fields.*" | ||
- type: input | ||
id: external-issue | ||
attributes: | ||
label: "Related Feature Request" | ||
description: "Link to user feature request (if applicable)" | ||
placeholder: "#123" | ||
- type: textarea | ||
id: technical-requirements | ||
attributes: | ||
label: "Technical Requirements" | ||
description: "Detailed feature requirements" | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: implementation-approach | ||
attributes: | ||
label: "Implementation Approach" | ||
description: "Technical approach and architecture changes" | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: acceptance-criteria | ||
attributes: | ||
label: "Acceptance Criteria" | ||
description: "Specific conditions that must be met" | ||
validations: | ||
required: false |