Skip to content

Commit

Permalink
New GH issue template to capture new requirements
Browse files Browse the repository at this point in the history
## Checklist
<!-- Put an `x` in the boxes. All tasks must be completed and boxes
checked before merging. -->
- [x] 🤖 This change is covered by unit tests (if applicable).
- [x] 🤹 Manual testing has been performed (if necessary).
- [x] 🛡️ Security impacts have been considered (if relevant).
- [x] 📖 Documentation updates are complete (if required).
- [x] 🧠 Third-party dependencies and TPIP updated (if required).
  • Loading branch information
soumeh01 authored Feb 17, 2025
1 parent cb48128 commit 12a929a
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: "Feature Request"
description: "Submit a new feature request"
title: "[Feature Request]: "
labels: ["enhancement"]

body:
- type: textarea
id: description
attributes:
label: "Description"
description: "Provide a detailed description of the request, including the problem it solves and any relevant context."
validations:
required: true

- type: checkboxes
id: security-requirement
attributes:
label: "Is this request a Security Requirement?"
description: "If you select 'Yes,' please add the 'security-requirement' label."
options:
- label: "Yes"

- type: dropdown
id: priority
attributes:
label: "Priority"
description: "Select the priority level of this request."
options:
- High
- Medium
- Low
validations:
required: true

- type: input
id: related_issues
attributes:
label: "Related Issues (Optional)"
description: "Link any related GitHub issues."
placeholder: "e.g., #123, #456"

- type: textarea
id: additional_notes
attributes:
label: "Additional Notes (Optional)"
description: "Provide any extra information or concerns regarding this request."

0 comments on commit 12a929a

Please sign in to comment.