Conversation
|
Warning Rate limit exceeded
⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. 📒 Files selected for processing (1)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Greptile SummaryAdds a GitHub Actions workflow that automatically adds newly opened issues and PRs to the organization's project board using a reusable workflow from
Confidence Score: 4/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant User
participant GitHub
participant AutoProjectWorkflow
participant ReusableWorkflow
participant ProjectBoard
alt Issue opened
User->>GitHub: Create issue
GitHub->>AutoProjectWorkflow: Trigger on issues.opened
AutoProjectWorkflow->>ReusableWorkflow: Call add-to-project.yml@main
ReusableWorkflow->>ProjectBoard: Add issue to project (using PROJECT_TOKEN)
ProjectBoard-->>ReusableWorkflow: Issue added
else Pull request opened
User->>GitHub: Create pull request
GitHub->>AutoProjectWorkflow: Trigger on pull_request.opened
AutoProjectWorkflow->>ReusableWorkflow: Call add-to-project.yml@main
ReusableWorkflow->>GitHub: Check for linked issues
alt PR without linked issue
ReusableWorkflow->>ProjectBoard: Add PR to project (using PROJECT_TOKEN)
ProjectBoard-->>ReusableWorkflow: PR added
else PR with linked issue
ReusableWorkflow->>ReusableWorkflow: Skip (linked issue tracked instead)
end
end
|
Adds workflow to automatically add issues and PRs to the project board.
Uses the reusable workflow from RequestNetwork/.github.
Closes RequestNetwork/public-issues#130