Skip to content

Instantly share code, notes, and snippets.

@lbraun
Last active February 11, 2026 22:23
Show Gist options
  • Select an option

  • Save lbraun/e768dfda04ad1b8c7736ccdec5a6a6bf to your computer and use it in GitHub Desktop.

Select an option

Save lbraun/e768dfda04ad1b8c7736ccdec5a6a6bf to your computer and use it in GitHub Desktop.
Progressing a GitHub Issue Flowchart

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
Loading
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment