Skip to content

chore: remove pull_request trigger from auto-project workflow#12

Merged
MantisClone merged 1 commit intomainfrom
chore/remove-pr-trigger-from-auto-project
Jan 21, 2026
Merged

chore: remove pull_request trigger from auto-project workflow#12
MantisClone merged 1 commit intomainfrom
chore/remove-pr-trigger-from-auto-project

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 26 minutes and 29 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 now only handles issues. This cleanup ensures the workflow configuration matches the actual behavior of the reusable workflow it calls.

  • Removed pull_request.types: [opened] trigger from .github/workflows/auto-project.yml
  • Workflow now only triggers on issues.types: [opened]
  • Change aligns with updated reusable workflow behavior in RequestNetwork/.github

Confidence Score: 5/5

  • This PR is safe to merge with minimal risk
  • The change is a simple, well-justified removal of an unnecessary workflow trigger. The workflow syntax remains valid, and the change aligns with the updated reusable workflow behavior.
  • No files require special attention

Important Files Changed

Filename Overview
.github/workflows/auto-project.yml Removed pull_request trigger to align with reusable workflow that only handles issues

Sequence Diagram

sequenceDiagram
    participant User
    participant Issue as GitHub Issue
    participant Workflow as auto-project.yml
    participant Reusable as RequestNetwork/.github<br/>add-to-project.yml
    participant Project as GitHub Project

    Note over Workflow: Before: Triggered on issues<br/>and pull_requests
    Note over Workflow: After: Only triggered on issues

    User->>Issue: Opens new issue
    Issue->>Workflow: Triggers workflow (on.issues.opened)
    Workflow->>Reusable: Calls reusable workflow
    Reusable->>Project: Adds issue to project
    Project-->>User: Issue added to project board
Loading

@MantisClone MantisClone merged commit 881e138 into main Jan 21, 2026
9 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

1 participant