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 new GitHub Actions workflow that automatically adds newly opened issues and pull requests to the organization's project board. The workflow delegates to a reusable workflow from
Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant User
participant GitHub
participant AutoProject as Auto-Project Workflow
participant Reusable as RequestNetwork/.github Reusable Workflow
participant ProjectBoard as GitHub Project Board
alt Issue Opened
User->>GitHub: Open new issue
GitHub->>AutoProject: Trigger issues.opened event
else PR Opened
User->>GitHub: Open new pull request
GitHub->>AutoProject: Trigger pull_request.opened event
end
AutoProject->>Reusable: Call add-to-project.yml workflow
AutoProject->>Reusable: Pass PROJECT_TOKEN secret
Reusable->>Reusable: Evaluate conditions<br/>(e.g., skip PRs with linked issues)
alt Should Add to Project
Reusable->>ProjectBoard: Add issue/PR using PROJECT_TOKEN
ProjectBoard-->>Reusable: Confirm addition
else Should Skip
Reusable->>Reusable: Skip (e.g., PR has linked issue)
end
Reusable-->>AutoProject: Complete
AutoProject-->>GitHub: Workflow complete
|
Adds workflow to automatically add issues and PRs to the project board.
Uses the reusable workflow from RequestNetwork/.github.
Closes RequestNetwork/public-issues#130