chore: add reopen-issue-if-prs-open workflow#115
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 new GitHub workflow that automatically reopens issues when they are closed while linked pull requests remain open. The workflow delegates to a reusable workflow from RequestNetwork/.github and follows the established pattern used in the repository for other workflow delegations (auto-project.yml, pr-comments.yml). The implementation is minimal and clean, passing the required secret token to the reusable workflow. Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant Issue as GitHub Issue
participant Workflow as Reopen Workflow
participant ReusableWf as RequestNetwork/.github<br/>Reusable Workflow
participant API as GitHub API
Issue->>Workflow: Issue closed event trigger
activate Workflow
Workflow->>ReusableWf: Invoke reusable workflow<br/>(with REOPEN_ISSUES_TOKEN)
activate ReusableWf
ReusableWf->>API: Check linked PRs
API-->>ReusableWf: PR status
ReusableWf->>API: Reopen issue if PRs open
API-->>ReusableWf: Issue reopened
deactivate ReusableWf
ReusableWf-->>Workflow: Workflow complete
deactivate Workflow
|
Adds workflow that reopens issues when closed while linked PRs are still open.
Fixes RequestNetwork/public-issues#131