For inclusion in the SBUX project charter
flowchart TD
A[**To Do**<br/>Not yet picked up]
B[**In Progress**<br/>Actively being worked on]
C[**Dev Review**<br/>PR ready for code review]
D{Changes requested<br/>in Dev Review?}
E[**QA**<br/>Ready for QA review<br/>Dev provides QA instructions]
F{Issues found<br/>in QA?}
G[**Client Review**<br/>Ready for client input and/or final signoff]
H{Client requests<br/>changes?}
I[**Approved**<br/>Code approved for production]
J[**Done**<br/>Issue closed]
A --> B
B --> C
C --> D
D -- Yes --> B
D -- No --> E
E --> F
F -- Yes --> B
F -- No --> G
G --> H
H -- Yes --> B
H -- No --> I
I --> J