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 a GitHub Actions workflow that automatically adds newly opened issues and pull requests to the Request Network project board. The workflow delegates to a reusable workflow from the organization's central
Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant User
participant GitHub
participant Workflow as auto-project.yml
participant ReusableWorkflow as RequestNetwork/.github<br/>add-to-project.yml
participant ProjectBoard as GitHub Project Board
alt Issue Opened
User->>GitHub: Create/Open Issue
GitHub->>Workflow: Trigger (issues.opened)
Workflow->>ReusableWorkflow: Call with PROJECT_TOKEN
ReusableWorkflow->>ProjectBoard: Add Issue to Project
ProjectBoard-->>ReusableWorkflow: Success
else PR Opened
User->>GitHub: Create/Open Pull Request
GitHub->>Workflow: Trigger (pull_request.opened)
Workflow->>ReusableWorkflow: Call with PROJECT_TOKEN
ReusableWorkflow->>ReusableWorkflow: Check if PR has linked issues
alt PR without linked issues
ReusableWorkflow->>ProjectBoard: Add PR to Project
ProjectBoard-->>ReusableWorkflow: Success
else PR with linked issues
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