Created
March 14, 2022 11:26
-
-
Save wvbe/d5a4e4ac861e89bf71ee7978b5ceb60b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
graph LR | |
Flag[Flag issue] | |
Block[Move to blocked] | |
S1>You found a bug] | |
S2>You found an improvement] --> C4 | |
S1 --> C1{Prevents normal use?} | |
C1 --> |Yes| Flag | |
C1 --> |No| C2{Cause data corruption?} | |
C2 --> |Yes| Flag | |
C2 --> |No| C3{Regression?} | |
C3 --> |No| Block | |
C3 --> |Yes| C4{Is worth fixing} | |
C4 --> |No| Block | |
C4 --> |Yes| Flag |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment