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
Problem
The
add-to-projectreusable 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 onpull_requestevents, causing unnecessary workflow runs that immediately skip.See RequestNetwork/.github commits
fad6eddand4ca761bfor the reusable workflow changes.Proposed Solution
Update all caller workflows (
.github/workflows/auto-project.yml) across repos to remove thepull_requesttrigger:Before:
After:
Affected Repos
54 repos need updating. PRs will be linked below as they're created.
Considerations