Skip to content

Conversation

@MantisClone
Copy link
Member

Adds workflow that reopens issues when closed while linked PRs are still open.

Fixes RequestNetwork/public-issues#131

@coderabbitai
Copy link

coderabbitai bot commented Jan 19, 2026

Warning

Rate limit exceeded

@MantisClone has exceeded the limit for the number of commits that can be reviewed per hour. Please wait 29 minutes and 26 seconds before requesting another review.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

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.

📥 Commits

Reviewing files that changed from the base of the PR and between e3267e8 and 83bbb92.

📒 Files selected for processing (1)
  • .github/workflows/reopen-issue-if-prs-open.yml

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.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@MantisClone MantisClone marked this pull request as ready for review January 19, 2026 21:19
@greptile-apps
Copy link

greptile-apps bot commented Jan 19, 2026

Greptile Summary

Added GitHub Actions workflow to automatically reopen issues when they're closed while linked pull requests are still open. This prevents issues from being prematurely closed before all related work is merged.

  • Workflow triggers on issue close events
  • Delegates to reusable workflow in RequestNetwork/.github repository
  • Requires REOPEN_ISSUES_TOKEN secret to be configured with issue write permissions

Confidence Score: 5/5

  • This PR is safe to merge with minimal risk
  • Simple declarative workflow configuration that delegates to an existing, tested reusable workflow. No logic implementation or security concerns in this repository - just configuration
  • No files require special attention

Important Files Changed

Filename Overview
.github/workflows/reopen-issue-if-prs-open.yml Adds workflow to reopen closed issues when linked PRs are still open

Sequence Diagram

sequenceDiagram
    participant User
    participant GitHub
    participant Workflow as Reopen Issue Workflow
    participant ReusableWorkflow as RequestNetwork/.github Workflow
    participant Issue

    User->>Issue: Close issue
    GitHub->>Workflow: Trigger on issue closed event
    Workflow->>ReusableWorkflow: Call reusable workflow
    Note over Workflow,ReusableWorkflow: Pass REOPEN_ISSUES_TOKEN secret
    ReusableWorkflow->>GitHub: Check for linked open PRs
    alt PRs still open
        ReusableWorkflow->>Issue: Reopen issue
        Issue-->>User: Issue reopened notification
    else No open PRs
        ReusableWorkflow-->>Workflow: No action needed
    end
Loading

@MantisClone MantisClone self-assigned this Jan 19, 2026
@MantisClone MantisClone merged commit 3c29de4 into main Jan 20, 2026
3 checks passed
@MantisClone MantisClone deleted the chore/add-reopen-issue-workflow branch January 20, 2026 06:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[Automation] - Issues close prematurely when first PR in a stack merges

2 participants