-
Notifications
You must be signed in to change notification settings - Fork 0
Closed
Closed
Feature
Copy link
Description
Problem
The add-to-project reusable workflow was simplified to only auto-add issues to the project board (PRs are no longer auto-added). However, the caller workflows in individual repos still trigger on pull_request events, causing unnecessary workflow runs that immediately skip.
See RequestNetwork/.github commits fad6edd and 4ca761b for the reusable workflow changes.
Proposed Solution
Update all caller workflows (.github/workflows/auto-project.yml) across repos to remove the pull_request trigger:
Before:
on:
issues:
types: [opened]
pull_request:
types: [opened]After:
on:
issues:
types: [opened]Affected Repos
54 repos need updating. PRs will be linked below as they're created.
Considerations
- Low priority - current setup works, just wasteful
- Simple mechanical change across all repos
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels
Type
Projects
Status
✅ Done