Skip to content

Commit

Permalink
Updated bug report template to have severity and impact (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
cgalvan authored Feb 14, 2025
1 parent 243ad69 commit 3fcb278
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ body:
description: What is the problem? A clear and concise description of the bug.
validations:
required: true

- type: textarea
id: expected
attributes:
Expand All @@ -20,6 +21,7 @@ body:
What did you expect to happen?
validations:
required: true

- type: textarea
id: current
attributes:
Expand All @@ -31,6 +33,35 @@ body:
If service responses are relevant, please include wire logs.
validations:
required: true

- type: dropdown
id: severity
attributes:
label: Technical Severity
description: How serious is this issue from a technical perspective?
options:
- S1 - Critical (System crash, data loss, security vulnerability)
- S2 - Major (Significant functional failure, severe performance issue)
- S3 - Moderate (Partial feature malfunction, UI/UX problems)
- S4 - Minor (Cosmetic issues, typos, non-critical bugs)
validations:
required: true

- type: dropdown
id: impact
attributes:
label: User Impact
description: How many users are affected by this issue?
options:
- All users
- Most users (>50%)
- Many users (25-50%)
- Some users (5-25%)
- Few users (<5%)
- Single user/edge case
validations:
required: true

- type: textarea
id: reproduction
attributes:
Expand All @@ -43,6 +74,7 @@ body:
The code sample should be an SSCCE. See http://sscce.org/ for details. In short, please provide a code sample that we can copy/paste, run and reproduce.
validations:
required: true

- type: textarea
id: solution
attributes:
Expand All @@ -51,6 +83,7 @@ body:
Suggest a fix/reason for the bug
validations:
required: false

- type: textarea
id: context
attributes:
Expand All @@ -59,6 +92,7 @@ body:
Anything else that might be relevant for troubleshooting this bug. Providing context helps us come up with a solution that is most useful in the real world.
validations:
required: false

- type: input
id: environment
attributes:
Expand Down

0 comments on commit 3fcb278

Please sign in to comment.