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 29 minutes and 13 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 workflow, aligning it with its intended purpose of handling issues only. The reusable workflow RequestNetwork/.github/.github/workflows/add-to-project.yml@main was originally designed for issues, making the PR trigger unnecessary.

Confidence Score: 5/5

  • This PR is safe to merge with no risk
  • The change is a simple, focused removal of an unnecessary trigger that correctly aligns the workflow with its intended purpose. The syntax is correct, the workflow file remains valid, and pull request handling is already covered by a separate workflow file.
  • No files require special attention

Important Files Changed

Filename Overview
.github/workflows/auto-project.yml Removed unnecessary pull_request trigger, workflow now only handles issues as intended

Sequence Diagram

sequenceDiagram
    participant User
    participant GitHub
    participant AutoProject as Auto Project Workflow
    participant ReusableWF as add-to-project.yml
    participant ProjectBoard as GitHub Project

    Note over User,ProjectBoard: After this PR (issues only)
    
    User->>GitHub: Opens new issue
    GitHub->>AutoProject: Triggers workflow (issues:opened)
    AutoProject->>ReusableWF: Calls reusable workflow
    ReusableWF->>ProjectBoard: Adds issue to project board
    
    Note over User,ProjectBoard: Before this PR (issues + PRs)
    
    User->>GitHub: Opens new PR
    GitHub--xAutoProject: Would trigger workflow (removed)
    Note over AutoProject: PR trigger removed in this change
Loading

@MantisClone MantisClone merged commit 086a213 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