Last active
August 29, 2015 14:10
-
-
Save afomi/d1c5193276e1c1922459 to your computer and use it in GitHub Desktop.
developing-software-graphviz
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
<script type="text/vnd.graphviz" id="graphviz"> | |
digraph G { | |
"make card" -> | |
"estimate card" -> | |
"pick up card (started)" -> | |
"commit something" -> | |
"tests pass locally" -> | |
"push to github" -> | |
"open WIP pull request" -> | |
"semaphore build for 10+ ????????" -> | |
"commit more stuff" -> | |
"tests pass locally" -> | |
"ask review" -> | |
"incorporate reviewer feedback ??????" -> | |
"tests pass locally" -> | |
"push to github" -> | |
"card is find (finished)" -> | |
"semaphore builds" -> "build pass" | |
"semaphore builds" -> "build fail" -> "(LOOP to fix issues)" | |
"build pass" -> | |
"squash 1 commit" -> | |
"rebase on latest master" -> | |
"push to master" -> | |
"master build spins" -> | |
"deploy spins" -> | |
"QA on staging" -> | |
"card (delivered)" -> | |
"card (accepted)" | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment