GitScrum / Docs
Toutes les Bonnes Pratiques

Triage Bugs Priorisation | GitScrum

Créez processus triage bugs efficace avec GitScrum. Classification sévérité, assignation priorité et routage pour cycles résolution rapides.

4 min de lecture

How to manage bug triage and prioritization?

Manage bug triage by creating a structured intake process: bugs enter a Triage column, get severity/priority labels assigned, then move to the appropriate priority queue. Use consistent severity definitions (S1-S4), set SLAs per severity, and assign owners for triage rotation. Review untriaged bugs daily to prevent backlog buildup.

Severity definitions

SeverityDescriptionExample
S1 - CriticalSystem down, data loss, no workaroundProduction crash, data corruption
S2 - HighMajor feature broken, workaround difficultLogin failing, checkout errors
S3 - MediumFeature impaired, workaround existsSlow performance, UI glitch
S4 - LowMinor issue, cosmeticTypo, alignment issue

Priority vs Severity matrix

Low PriorityMedium PriorityHigh Priority
**S1 Critical**--Fix immediately
**S2 High**Fix in 1-2 weeksFix this sprintFix this week
**S3 Medium**BacklogFix next sprintFix this sprint
**S4 Low**Won't fixBacklogFix when convenient

Bug triage workflow:

  • Bug reported - Enters Triage column
  • Assign severity - S1-S4 based on impact
  • Assign priority - Business urgency
  • Add labels - Component, type, reporter
  • Assign owner - Or leave for claiming
  • Move to queue - Based on priority
  • Track SLA - Monitor time in queue
  • Fix and verify - Standard development flow
  • Bug triage labels

    LabelPurpose
    severity:s1Critical severity
    severity:s2High severity
    severity:s3Medium severity
    severity:s4Low severity
    priority:criticalFix immediately
    priority:highFix this week
    priority:mediumFix this sprint
    priority:lowWhen convenient
    needs-infoMissing reproduction steps
    cannot-reproduceUnable to replicate
    duplicateAlready reported

    Bug triage board

    ColumnPurposeWIP
    TriageNew bugs to reviewNone
    Needs InfoWaiting for details10
    ReadyTriaged, prioritized20
    In ProgressBeing fixed5
    ReviewCode review5
    TestingQA verification5
    DoneFixed and verifiedNone

    Bug report template

    ## Bug: [Brief description]
    
    ### Environment
    - Browser/OS: 
    - App version:
    - User role:
    
    ### Steps to Reproduce
    1. 
    2. 
    3. 
    
    ### Expected Behavior
    [What should happen]
    
    ### Actual Behavior
    [What actually happens]
    
    ### Screenshots/Logs
    [If applicable]
    
    ### Workaround
    [If any exists]
    

    Triage rotation

    DayTriage Owner
    MondayDeveloper A
    TuesdayDeveloper B
    WednesdayDeveloper C
    ThursdayDeveloper D
    FridayDeveloper E

    Related articles