The reusable workflow projectbluefin/bonedigger/.github/workflows/lifecycle.yml only defines jobs guarded by github.event_name == 'issues' and github.event_name == 'issue_comment'. It has no pull_request handling.
.github/workflows/bonedigger.yml in this repo still lists pull_request: types: [opened] in its on: block, so every non-main PR dispatches the reusable workflow and every job is skipped. That is harmless but wasteful, and the adjacent TODO comment referenced a placeholder issue (#TBD) instead of a real tracker.
Action: either drop the pull_request trigger from the caller, or keep it and add PR lifecycle jobs upstream in bonedigger. This issue tracks that decision so the TODO comment has a real reference.
The reusable workflow
projectbluefin/bonedigger/.github/workflows/lifecycle.ymlonly defines jobs guarded bygithub.event_name == 'issues'andgithub.event_name == 'issue_comment'. It has nopull_requesthandling..github/workflows/bonedigger.ymlin this repo still listspull_request: types: [opened]in itson:block, so every non-mainPR dispatches the reusable workflow and every job is skipped. That is harmless but wasteful, and the adjacent TODO comment referenced a placeholder issue (#TBD) instead of a real tracker.Action: either drop the
pull_requesttrigger from the caller, or keep it and add PR lifecycle jobs upstream in bonedigger. This issue tracks that decision so the TODO comment has a real reference.