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 SummaryThis PR adds an automated workflow that adds issues and PRs to the RequestNetwork project board. The workflow triggers when issues or PRs are opened, then delegates to a reusable workflow maintained in the RequestNetwork/.github repository. The implementation follows the established pattern used in the codebase (similar to the existing pr-comments workflow) and appropriately distinguishes between issues, PRs with linked issues (not added), and PRs without linked issues (added). The change is minimal, focused, and well-integrated with existing infrastructure. Confidence Score: 4/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant User
participant GitHub
participant Auto-Project Workflow
participant RequestNetwork/.github Workflow
participant Project Board
User->>GitHub: Open Issue or PR
GitHub->>Auto-Project Workflow: Trigger (on opened event)
Auto-Project Workflow->>RequestNetwork/.github Workflow: Call reusable workflow with PROJECT_TOKEN
RequestNetwork/.github Workflow->>Project Board: Add issue/PR to project
Project Board-->>GitHub: Workflow complete
GitHub-->>User: Issue/PR created and added to project
|
Adds workflow to automatically add issues and PRs to the project board.
Uses the reusable workflow from RequestNetwork/.github.
Closes RequestNetwork/public-issues#130