Orphaned "deleted" Actions workflow (path "BuildFailed") blocks all PR check-runs #204465
Replies: 2 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. |
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