Skip to content

Instantly share code, notes, and snippets.

@afomi
Last active August 29, 2015 14:10
Show Gist options
  • Save afomi/d1c5193276e1c1922459 to your computer and use it in GitHub Desktop.
Save afomi/d1c5193276e1c1922459 to your computer and use it in GitHub Desktop.
developing-software-graphviz
<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