chore: add reopen-issue-if-prs-open workflow#197
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 reopens issues when they are closed while linked pull requests are still open. The workflow uses a reusable workflow from the
Note: The PR description references issue #131 about "USDT ethereum direct payments failure" which appears unrelated to this workflow change - verify the correct issue is referenced. Confidence Score: 4/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant User
participant GitHub as GitHub Issue
participant Workflow as Reopen Issue Workflow
participant ReusableWorkflow as RequestNetwork/.github<br/>Reusable Workflow
participant API as GitHub API
User->>GitHub: Close issue
GitHub->>Workflow: Trigger on issue closed event
Workflow->>ReusableWorkflow: Call reusable workflow<br/>with REOPEN_ISSUES_TOKEN
ReusableWorkflow->>API: Check for linked open PRs
alt Has open PRs
ReusableWorkflow->>API: Reopen issue using token
API->>GitHub: Issue reopened
GitHub->>User: Notify issue reopened
else No open PRs
ReusableWorkflow->>GitHub: No action taken
end
|
Adds workflow that reopens issues when closed while linked PRs are still open.
Fixes RequestNetwork/public-issues#131