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 to automatically add new issues and pull requests to the organization's project board. The workflow leverages a reusable workflow from
Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant User
participant GitHub
participant AutoProjectWorkflow
participant ReusableWorkflow
participant ProjectBoard
alt Issue opened
User->>GitHub: Open issue
GitHub->>AutoProjectWorkflow: Trigger on issues.opened
AutoProjectWorkflow->>ReusableWorkflow: Call add-to-project.yml with PROJECT_TOKEN
ReusableWorkflow->>ProjectBoard: Add issue to project board
ProjectBoard-->>ReusableWorkflow: Confirm addition
else Pull request opened
User->>GitHub: Open pull request
GitHub->>AutoProjectWorkflow: Trigger on pull_request.opened
AutoProjectWorkflow->>ReusableWorkflow: Call add-to-project.yml with PROJECT_TOKEN
alt PR without linked issue
ReusableWorkflow->>ProjectBoard: Add PR to project board
ProjectBoard-->>ReusableWorkflow: Confirm addition
else PR with linked issue
ReusableWorkflow->>ReusableWorkflow: Skip (linked issue tracked)
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