chore: remove pull_request trigger from auto-project workflow#113
chore: remove pull_request trigger from auto-project workflow#113MantisClone merged 1 commit intomainfrom
Conversation
|
Warning Rate limit exceeded
⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the 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. Comment |
Greptile SummaryRemoved the
Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant GH as GitHub Events
participant W as auto-project.yml
participant RW as Reusable Workflow<br/>(add-to-project.yml)
participant P as GitHub Project
Note over GH,P: Before (with pull_request trigger)
GH->>W: Issue opened
W->>RW: Trigger with PROJECT_TOKEN
RW->>P: Add issue to project
GH->>W: PR opened
W->>RW: Trigger with PROJECT_TOKEN
Note over RW: Ignored (workflow only handles issues)
Note over GH,P: After (pull_request trigger removed)
GH->>W: Issue opened
W->>RW: Trigger with PROJECT_TOKEN
RW->>P: Add issue to project
|
The reusable workflow now only handles issues. Remove unnecessary pull_request trigger.
Fixes RequestNetwork/public-issues#151