1
0
Fork 0
mirror of https://github.com/VSadov/Satori.git synced 2025-06-10 18:11:04 +09:00

Replace picture of API review process with diagram (#65527)

This commit is contained in:
Immo Landwerth 2022-02-17 12:36:25 -08:00 committed by GitHub
parent e2b9ef3b81
commit ea5376adf7
Signed by: github
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 22 additions and 1 deletions

View file

@ -8,7 +8,28 @@ The rule of thumb is that we (**dotnet/runtime**) review every API that is being
## Process
![API Review Process](api-review-process.png)
```mermaid
sequenceDiagram
participant R as Requester
participant O as Runtime Owners
participant F as API review board (FXDC)
R ->> O: Files issue under dotnet/runtime
note over O: Assigns owner
note over R, O: Discussion
O ->> F: Label api-ready-for-review
note over F: Performs review
alt is accepted
F ->> R: Label api-approved
else is work needed
F ->> O: Label api-needs-work
else is rejected
F ->> R: Issue is closed
end
```
## Steps