summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/ISSUE_TEMPLATE/bug-report.yml28
1 files changed, 28 insertions, 0 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml
index 29d0d0dd0..12a1b657f 100644
--- a/.github/ISSUE_TEMPLATE/bug-report.yml
+++ b/.github/ISSUE_TEMPLATE/bug-report.yml
@@ -48,4 +48,32 @@ body:
label: "NumPy/Python version information:"
description: Output from `import sys, numpy; print(numpy.__version__, sys.version)`.
validations:
+ required: true
+
+- type: dropdown
+ attributes:
+ label: "Please select priority:"
+ description: |
+ Critical - The issue prevents users from running NumPy or causes crashes.
+ High - Issues that negatively affect someone’s work or that are critical for the project.
+ Medium -Issues that are important for the project, but not critical.
+ Low - Issues that are not critical for the project.
+ Trivial - The issue is a cosmetic issue or a very low-priority bug.
+ options:
+ - P1 (Critical)
+ - P2 (High)
+ - P3 (Medium)
+ - P4 (Low)
+ - P5 (Trivial)
+ validations:
+ required: true
+
+- type: textarea
+ attributes:
+ label: "Significance of the issue:"
+ description: >
+ Please explain how this issue negatively affects your work or why it should be prioritized.
+ placeholder: |
+ << your explanation here >>
+ validations:
required: true \ No newline at end of file