Skip to content

Instantly share code, notes, and snippets.

@picosam
Last active February 7, 2017 15:30
Show Gist options
  • Save picosam/6b189eb7082ba942e14ab1600f061712 to your computer and use it in GitHub Desktop.
Save picosam/6b189eb7082ba942e14ab1600f061712 to your computer and use it in GitHub Desktop.
Active Collab Task Workflow
@startuml
skinparam activityBorderColor gray
skinparam activityBarColor #A80036
skinparam handwritten true
start
:Developer starts working
on an assigned Task;
:DEVELOPMENT|
while (Developer writes code)
:Developer pushes code to feature
branch and creates a Pull Request;
:CODE REVIEW|
if (TL reviews code)
:TL finds problems with code;
:REOPENED|
:Developer works on fix;
else
:TL rebases code to master branch
and generates a build for testing;
:TESTING|
if (QA tests build)
:QA finds problems with build;
:REOPENED|
if (Developer rechecks)
:Developer confirms malfunction
and starts working on fix;
else
fork
:Developer cannot
reproduce;
:WORKS FOR ME|
fork again
:Developer cannot
find solution;
:BLOCKED|
end fork
end
endif
else
:QA writes release notes;
:VERIFIED|
end
endif
endif
endwhile
-[#white]->
@enduml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment