summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorSatish Mishra <zicsxone@gmail.com>2022-07-11 15:52:07 +0530
committerSatish Mishra <zicsxone@gmail.com>2022-07-11 15:52:07 +0530
commit607f671f5e3ece629ba80a30ca879d246b008778 (patch)
tree3edadc37c5e0ec7cfbd2f5e4ae55bdafbbda82c8 /.github
parent3da5da966d4518f7312bda4872b51f9f21de50a9 (diff)
downloadnumpy-607f671f5e3ece629ba80a30ca879d246b008778.tar.gz
Added priority in bug-report issue-template
Diffstat (limited to '.github')
-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