mirror of https://github.com/docker/buildx.git
Merge pull request #2678 from thompson-shaun/mermaid-fix
Update PROJECT mermaid daigrams
This commit is contained in:
commit
9cfa25ab40
31
PROJECT.md
31
PROJECT.md
|
@ -313,9 +313,8 @@ Examples:
|
||||||
```mermaid
|
```mermaid
|
||||||
flowchart LR
|
flowchart LR
|
||||||
create([New issue]) --> triage
|
create([New issue]) --> triage
|
||||||
subgraph triage[Triage]
|
subgraph triage[Triage Loop]
|
||||||
direction LR
|
review[Review]
|
||||||
review[Review] -- Feedback --> review
|
|
||||||
end
|
end
|
||||||
subgraph decision[Decision]
|
subgraph decision[Decision]
|
||||||
accept[Accept]
|
accept[Accept]
|
||||||
|
@ -323,7 +322,7 @@ flowchart LR
|
||||||
end
|
end
|
||||||
triage -- if accepted --> accept[Assign status, milestone]
|
triage -- if accepted --> accept[Assign status, milestone]
|
||||||
triage -- if rejected --> close[Assign status, close issue]
|
triage -- if rejected --> close[Assign status, close issue]
|
||||||
```
|
```
|
||||||
|
|
||||||
### Examples
|
### Examples
|
||||||
|
|
||||||
|
@ -376,14 +375,26 @@ A thorough and timely review process for pull requests (PRs) is crucial for main
|
||||||
|
|
||||||
```mermaid
|
```mermaid
|
||||||
flowchart LR
|
flowchart LR
|
||||||
triage([Triage]) --> draft[Draft PR]
|
triage([Triage])
|
||||||
draft --> review[PR Review]
|
draft[Draft PR]
|
||||||
draft -- Feedback --> draft
|
review[PR Review]
|
||||||
review --> closed{{Close PR}}
|
closed{{Close PR}}
|
||||||
review -- Feedback --> review
|
merge{{Merge PR}}
|
||||||
|
|
||||||
|
subgraph feedback1[Feedback Loop]
|
||||||
|
draft
|
||||||
|
end
|
||||||
|
subgraph feedback2[Feedback Loop]
|
||||||
|
review
|
||||||
|
end
|
||||||
|
|
||||||
|
triage --> draft
|
||||||
|
draft --> review
|
||||||
|
review --> closed
|
||||||
review --> draft
|
review --> draft
|
||||||
review --> merge{{Merge PR}}
|
review --> merge
|
||||||
```
|
```
|
||||||
|
|
||||||
## Handling stalled issues and pull requests
|
## Handling stalled issues and pull requests
|
||||||
|
|
||||||
Unfortunately, some issues or pull requests can remain inactive for extended periods. To mitigate this, automation is employed to prompt both the author and maintainers, ensuring that all contributions receive appropriate attention.
|
Unfortunately, some issues or pull requests can remain inactive for extended periods. To mitigate this, automation is employed to prompt both the author and maintainers, ensuring that all contributions receive appropriate attention.
|
||||||
|
|
Loading…
Reference in New Issue