Skip to content

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

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

chore: remove pull_request trigger from auto-project workflow#116
MantisClone merged 1 commit into
mainfrom
chore/remove-pr-trigger-from-auto-project

Conversation

@MantisClone

Copy link
Copy Markdown
Collaborator

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

Fixes RequestNetwork/public-issues#151

@coderabbitai

coderabbitai Bot commented Jan 21, 2026

Copy link
Copy Markdown
Contributor

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 19 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

greptile-apps Bot commented Jan 21, 2026

Copy link
Copy Markdown
Contributor

Greptile Summary

Removed the pull_request trigger from the auto-project workflow, aligning with the reusable workflow's updated scope to only handle issues.

Confidence Score: 5/5

  • This PR is safe to merge with no risk
  • The change is a simple removal of two lines from a GitHub Actions workflow file that removes an unnecessary trigger, with no logic changes or potential side effects
  • No files require special attention

Important Files Changed

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

Sequence Diagram

sequenceDiagram
    participant GH as GitHub Event
    participant Workflow as auto-project.yml
    participant Reusable as add-to-project.yml

    Note over GH,Reusable: Before (PR #114)
    GH->>Workflow: issue opened
    Workflow->>Reusable: Trigger reusable workflow
    Reusable-->>Workflow: Add issue to project
    GH->>Workflow: pull_request opened
    Workflow->>Reusable: Trigger reusable workflow
    Reusable-->>Workflow: Add PR to project

    Note over GH,Reusable: After (PR #116)
    GH->>Workflow: issue opened
    Workflow->>Reusable: Trigger reusable workflow
    Reusable-->>Workflow: Add issue to project
    GH-xWorkflow: pull_request opened (no longer triggers)
Loading

@MantisClone MantisClone merged commit 83baeff 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

1 participant