Skip to content

Conversation

@MantisClone
Copy link
Member

The reusable workflow now only handles issues. Remove unnecessary pull_request trigger.

Fixes RequestNetwork/public-issues#151

@coderabbitai
Copy link

coderabbitai bot commented Jan 21, 2026

Warning

Rate limit exceeded

@MantisClone has exceeded the limit for the number of commits that can be reviewed per hour. Please wait 0 minutes and 5 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.


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.

@greptile-apps
Copy link

greptile-apps bot commented Jan 21, 2026

Greptile Summary

This PR removes the pull_request trigger from the auto-project.yml workflow, keeping only the issues trigger. The change reflects that the reusable workflow referenced by this file now exclusively handles issue events, making the pull request trigger redundant. The change is a simple, targeted cleanup that aligns with recent workflow updates.

Confidence Score: 5/5

  • This PR is safe to merge with no concerns. It's a straightforward removal of an unnecessary trigger.
  • Score reflects a minimal, low-risk change that removes dead code (unused pull_request trigger). The change aligns with the updated reusable workflow implementation and solves the reported issue. No syntax errors, no logic changes, and no side effects.
  • No files require special attention

Important Files Changed

Filename Overview
.github/workflows/auto-project.yml Removed pull_request trigger from workflow as the reusable workflow now only handles issues. This cleanup change is correct and aligns with the updated reusable workflow logic.

Sequence Diagram

sequenceDiagram
  participant Trigger as PR Workflow Trigger
  participant Workflow as auto-project.yml
  participant ReusableWorkflow as Reusable Workflow<br/>(add-to-project.yml)
  
  Note over Trigger: Before: Issues + PRs<br/>After: Issues Only
  
  rect rgb(200, 220, 255)
    Note over Trigger, ReusableWorkflow: Issue Event Flow (Active)
    Trigger->>Workflow: Issue Opened Event
    Workflow->>ReusableWorkflow: Call Reusable Workflow
    ReusableWorkflow->>ReusableWorkflow: Add to Project
  end
  
  rect rgb(255, 220, 220)
    Note over Trigger: PR Event Flow (Removed)
    Trigger-->>Workflow: PR Opened Event (Now Ignored)
  end
Loading

@MantisClone MantisClone merged commit 1e01e54 into main Jan 21, 2026
6 checks passed
@MantisClone MantisClone deleted the chore/remove-pr-trigger-from-auto-project branch January 21, 2026 18:20
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.

chore: Remove pull_request trigger from auto-project workflows

2 participants