Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update PROJECT mermaid daigrams #2678

Merged
merged 1 commit into from
Sep 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 21 additions & 10 deletions PROJECT.md
Original file line number Diff line number Diff line change
Expand Up @@ -313,17 +313,16 @@ Examples:
```mermaid
flowchart LR
create([New issue]) --> triage
subgraph triage[Triage]
direction LR
review[Review] -- Feedback --> review
subgraph triage[Triage Loop]
review[Review]
end
subgraph decision[Decision]
accept[Accept]
close[Close]
end
triage -- if accepted --> accept[Assign status, milestone]
triage -- if rejected --> close[Assign status, close issue]
```
```

### Examples

Expand Down Expand Up @@ -376,14 +375,26 @@ A thorough and timely review process for pull requests (PRs) is crucial for main

```mermaid
flowchart LR
triage([Triage]) --> draft[Draft PR]
draft --> review[PR Review]
draft -- Feedback --> draft
review --> closed{{Close PR}}
review -- Feedback --> review
triage([Triage])
draft[Draft PR]
review[PR Review]
closed{{Close PR}}
merge{{Merge PR}}

subgraph feedback1[Feedback Loop]
draft
end
subgraph feedback2[Feedback Loop]
review
end

triage --> draft
draft --> review
review --> closed
review --> draft
review --> merge{{Merge PR}}
review --> merge
```

## 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.
Expand Down