Created
March 22, 2013 19:08
-
-
Save detro/5223885 to your computer and use it in GitHub Desktop.
How to raise issues against an Open Source project (my take on it)
This file contains 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
/' | |
Render this file with PlantUML. | |
Official website: http://plantuml.sourceforge.net/ | |
'/ | |
@startuml | |
start | |
:You found and <b>Issue</b>; | |
:Search <b>Tracker</b>\nfor similar Issue!; | |
if (Is Issue already in the Tracker?) then (yes) | |
:Add a <b>"+1 / me too"\nWill help to set priorities</b>; | |
endif | |
if (Can you <b>reproduce</b> it?) then (yes) | |
if (Can you <b>provide a fix</b> for it?) then (yes) | |
:Submit a <b>Pull Request</b>\n<i>YOU ROCK</i>; | |
else (no) | |
:Submit an <b>Issue</b>\n<i>THANKS</i>; | |
endif | |
else (no) | |
:Nice to meet you.\n<i>Bye now!</i>; | |
endif | |
stop | |
@enduml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment