Orphaned "deleted" Actions workflow (path "BuildFailed") blocks all PR check-runs #204465
Replies: 6 comments
|
💬 Your Product Feedback Has Been Submitted 🎉 Thank you for taking the time to share your insights with us! Your feedback is invaluable as we build a better GitHub experience for all our users. Here's what you can expect moving forward ⏩
Where to look to see what's shipping 👀
What you can do in the meantime 💻
As a member of the GitHub community, your participation is essential. While we can't promise that every suggestion will be implemented, we want to emphasize that your feedback is instrumental in guiding our decisions and priorities. Thank you once again for your contribution to making GitHub even better! We're grateful for your ongoing support and collaboration in shaping the future of our platform. ⭐ |
|
Based on the evidence you posted, I don't think there is a repository-side fix left here. The strongest indicators are:
One detail worth clarifying: GitHub's documented workflow REST API provides endpoints to list/get, enable, disable, and dispatch workflows, but there is no documented endpoint to delete a workflow definition itself. So a is not surprising and is not a supported remediation path.
Given that you have already reproduced this from a clean PR and after refreshing the workflow registry from I would escalate this to GitHub Support and include exactly:
The key request to Support should be to remove or repair the stale workflow registry entry for workflow ID 330472602. I would not try to recreate a file named So the practical answer is: this appears to require GitHub staff intervention; there is no documented repository or REST API operation that can remove this deleted workflow definition from the registry. |
|
Same orphan on |
|
Same orphan on This is the same
Reproductions:
Request: remove or repair workflow registry entry |
|
Same orphan on private repo
The row was created in the same second as merge of PR #449 (OSB TypeScript only — no workflow file change). Last healthy Reproductions (still present):
Please remove or repair workflow id |
|
Affected repository: jollysatodiya01-ops/numbers. Confirmed orphaned BuildFailed Actions failure. Orphan workflow 325528259 returns name="", path=BuildFailed, state=deleted and is absent from the active workflow list. Actions is enabled with allowed_actions=all and read-only workflow permissions. Latest push run 33776450856 for commit 394f0ef ended startup_failure with zero jobs; earlier push 33775450415 for c2ca435 did the same. Original active workflow manual dispatches already failed pre-job on candidate b208061: Quality Gate 31512250160 and Migrations 31512250218. Renaming the valid workflows created active registrations 349475356 and 349475355, but manual runs 33775308004 and 33775307622 still ended startup_failure with zero jobs. This rules out workflow steps, dependencies, checkout, runner labels, runner type, and a single wedged filename. No production credentials or financial payloads are involved. Request: please correlate this repository with the other cases and have Actions engineering purge/reindex the stale BuildFailed workflow registration and repository event-dispatch state, or provide the supported self-service repair. |
Uh oh!
There was an error while loading. Please reload this page.
🏷️ Discussion Type
Bug
💬 Feature/Topic Area
Workflow Configuration
Discussion Details
Repo: zilokki-bot/black-rock-workspace
A GitHub-side orphan workflow makes GitHub create a startup_failure run before any
jobs on every pull_request event, so no real check-runs are ever created and normal
workflows (.github/workflows/gate.yml) never start.
Facts:
path="BuildFailed", name="", state="deleted", created_at 2026-08-09T12:21:33Z
no git history for such a file.
that is not active."
Reproduces on a CLEAN probe PR from main (only a docs file changed):
path "BuildFailed", conclusion startup_failure, jobs total_count 0.
same BuildFailed/startup_failure, still 0 check-runs.
Impact: every PR in the repo gets 0 real check-runs. This is a GitHub-side
orphaned/deleted workflow registry record; it cannot be removed from the repo side
(no file, disable blocked by state=deleted, delete 404). Requesting staff to remove
or repair workflow id 330472602 for this repo.
All reactions