Skip to content

Instantly share code, notes, and snippets.

@jcstein
Last active February 13, 2024 16:37
Show Gist options
  • Save jcstein/c77472d460b249ef8a2242dbe62a09b4 to your computer and use it in GitHub Desktop.
Save jcstein/c77472d460b249ef8a2242dbe62a09b4 to your computer and use it in GitHub Desktop.
graph TD
    A(Start: I released a new version of software) --> B{Is the update minor or major?}
    B -->|Minor| C{Does the engineer have the necessary knowledge and permissions?}
    C -->|Yes| D[Engineer updates the documentation]
    C -->|No| E[Engineer pings the responsible person/team]
    B -->|Major| F{Is there a designated documentation team or person?}
    F -->|Yes| G[Ping the documentation team/person]
    F -->|No| H{Does the engineer have the necessary knowledge?}
    H -->|Yes| I[Engineer updates the documentation with a peer review]
    H -->|No| J[Engineer pings a subject matter expert for assistance]
    D --> K{Is a review required?}
    E --> K
    G --> K
    I --> K
    J --> K
    K -->|Yes| L[Submit documentation for review] --> M[Update completed and communicated]
    K -->|No| M
    M --> N(End)

Loading
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment