Documenting ADR Process ADR (#108)

* Adding ADR for updated project board-based ADR process. Issue here: https://github.com/usds/justice40-tool/issues/76
This commit is contained in:
Nat Hillard 2021-06-14 12:44:25 -04:00 committed by GitHub
commit 96fb0e8805
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 114 additions and 0 deletions

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 21 KiB

View file

@ -0,0 +1,15 @@
graph TB
Start -- Create Issue with ADR Template --> DR["Draft"]
DR --> RD{"Ready for Discussion?"}
RD --> |Yes - Maintainer Adds Ready for Discussion label| DI["In Discussion"]
RD --> |No - Iterate| DR
DI -- Discuss in Ticket + wait for comment period to expire --> C{Consensus}
C --> |Yes| PR["Pull Request"]
C --> |No| A{Concerns Addressed?}
A --> |Yes| PR
A --> |No| IP["In Person Discussion"]
IP --> O{Voting Outcome}
O --> |Accepted - add label | PR
O --> |Rejected - add label | PR
PR --> PRP["Standard PR Process"]
PRP --> Close