chore: remove pull_request trigger from auto-project workflow#30
Conversation
WalkthroughA GitHub Actions workflow configuration file is updated to remove the Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. 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 SummaryThis PR removes the
Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant Issue as GitHub Issue
participant Workflow as auto-project.yml
participant Reusable as add-to-project.yml
participant Project as GitHub Project
Note over Issue,Project: Before: Triggered on issues AND PRs
Note over Issue,Project: After: Triggered on issues ONLY
Issue->>Workflow: Issue opened event
activate Workflow
Workflow->>Reusable: Call reusable workflow
activate Reusable
Reusable->>Project: Add issue to project
Project-->>Reusable: Success
deactivate Reusable
Reusable-->>Workflow: Complete
deactivate Workflow
|
The reusable workflow now only handles issues. Remove unnecessary pull_request trigger.
Fixes RequestNetwork/public-issues#151
Summary by CodeRabbit
✏️ Tip: You can customize this high-level summary in your review settings.