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
Contributor

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 29 minutes and 23 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

Removes the pull_request trigger from the auto-project workflow since the reusable workflow at RequestNetwork/.github now only handles issues, making the PR trigger unnecessary.

  • Workflow will now only trigger on issues: [opened] events
  • No functional impact since the underlying workflow already doesn't process pull requests

Confidence Score: 5/5

  • This PR is safe to merge - it's a simple cleanup removing an unused workflow trigger
  • Score of 5 reflects that this is a minimal, well-scoped change that removes dead code (an unused trigger) with no risk of breaking functionality
  • No files require special attention

Important Files Changed

Filename Overview
.github/workflows/auto-project.yml Removed unused pull_request trigger since the reusable workflow only handles issues. No issues found.

Sequence Diagram

sequenceDiagram
    participant GH as GitHub Events
    participant WF as auto-project.yml
    participant RW as add-to-project.yml (reusable)
    
    Note over GH,RW: Before this PR
    GH->>WF: issues: opened
    WF->>RW: Trigger reusable workflow
    RW-->>WF: Process issue
    GH->>WF: pull_request: opened
    WF->>RW: Trigger reusable workflow
    RW-->>WF: No action (PRs not handled)
    
    Note over GH,RW: After this PR
    GH->>WF: issues: opened
    WF->>RW: Trigger reusable workflow
    RW-->>WF: Process issue
    Note over GH: pull_request events no longer trigger workflow
Loading

@MantisClone MantisClone merged commit 0ebac5e into main Jan 21, 2026
7 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