-
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.
feature/129: Add dev bug report and feature request forms. Add user f…
…eature request form.
- Loading branch information
1 parent
2b18e31
commit 8d37e86
Showing
3 changed files
with
105 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: "🔧 Internal Bug Report" | ||
description: "For Hawk team members only" | ||
title: "Fix: " | ||
labels: ["bug", "internal"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
# Internal Team Members Only | ||
This template is for Hawk development team use. | ||
- type: input | ||
id: external-issue | ||
attributes: | ||
label: Related External Issue | ||
description: Link to user-reported issue (if applicable) | ||
placeholder: "#123" | ||
- type: textarea | ||
id: technical-analysis | ||
attributes: | ||
label: Technical Analysis | ||
description: Root cause analysis | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: implementation-plan | ||
attributes: | ||
label: Implementation Plan | ||
description: Proposed fix approach | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: acceptance-criteria | ||
attributes: | ||
label: Acceptance Criteria | ||
description: What needs to be true for this to be resolved? | ||
validations: | ||
required: true |
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: "⚙️ Feature Implementation" | ||
description: "For Hawk team members only" | ||
title: "Implement: " | ||
labels: ["enhancement", "internal"] | ||
body: | ||
- 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: true | ||
- type: textarea | ||
id: implementation-approach | ||
attributes: | ||
label: Implementation Approach | ||
description: Technical approach and architecture changes | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: acceptance-criteria | ||
attributes: | ||
label: Acceptance Criteria | ||
description: Specific conditions that must be met | ||
validations: | ||
required: true |
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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: "🐛 Report a Bug" | ||
description: "Report a bug or problem with Hawk" | ||
title: "Bug: " | ||
labels: ["bug", "triage", "external"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to report a bug in Hawk! | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: What happened? | ||
description: Describe what you were doing and what went wrong | ||
placeholder: Clear, concise description of the issue | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: reproduction | ||
attributes: | ||
label: Steps to Reproduce | ||
description: How can we reproduce this issue? | ||
placeholder: | | ||
1. Run command '...' | ||
2. With parameters '...' | ||
3. See error | ||
validations: | ||
required: true | ||
- type: input | ||
id: version | ||
attributes: | ||
label: Hawk Version | ||
description: What version of Hawk are you running? | ||
placeholder: "e.g., 1.2.0" | ||
validations: | ||
required: true |