Skip to content

Conversation

@MantisClone
Copy link
Member

@MantisClone MantisClone commented Jan 21, 2026

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

Fixes RequestNetwork/public-issues#151

Summary by CodeRabbit

Release Notes

  • Chores
    • Internal GitHub Actions workflow configuration updated. No user-facing changes.

✏️ Tip: You can customize this high-level summary in your review settings.

@coderabbitai
Copy link

coderabbitai bot commented Jan 21, 2026

Walkthrough

Removed the pull_request event trigger from the auto-project GitHub Actions workflow, leaving only the issues event trigger. This aligns the workflow with recent simplifications to the reusable workflow that now only auto-adds issues to the project board, eliminating unnecessary workflow runs.

Changes

Cohort / File(s) Summary
GitHub Actions Workflow Configuration
.github/workflows/auto-project.yml
Removed pull_request trigger with types: [opened]; retained only issues trigger to prevent wasteful workflow executions

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title accurately describes the main change: removing the pull_request trigger from the auto-project workflow.
Linked Issues check ✅ Passed The PR successfully removes the pull_request trigger from .github/workflows/auto-project.yml, directly addressing the requirement in issue #151.
Out of Scope Changes check ✅ Passed All changes are directly scoped to the stated objective of removing the pull_request trigger from the auto-project workflow.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ 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.

❤️ 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

Removed the pull_request trigger from the auto-project workflow, aligning it with the reusable workflow that now only handles issues.

  • Removed pull_request.opened event trigger
  • Workflow now only responds to issues.opened events
  • Change aligns with upstream workflow modifications

Confidence Score: 5/5

  • This PR is safe to merge with no risk
  • Simple configuration change that removes an unused trigger, no logic changes, perfectly aligned with the PR description and referenced issue
  • No files require special attention

Important Files Changed

Filename Overview
.github/workflows/auto-project.yml Removed pull_request trigger, now only triggers on issue opened events

Sequence Diagram

sequenceDiagram
    participant Issue as GitHub Issue
    participant Workflow as auto-project.yml
    participant Reusable as add-to-project.yml
    participant Project as GitHub Project

    Issue->>Workflow: issues.opened event
    activate Workflow
    Workflow->>Reusable: Call reusable workflow
    activate Reusable
    Reusable->>Project: Add issue to project
    Project-->>Reusable: Success
    Reusable-->>Workflow: Complete
    deactivate Reusable
    deactivate Workflow

    Note over Workflow: pull_request trigger removed
Loading

@MantisClone MantisClone merged commit 651e25a 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