Workflow run permanently stuck in queued state; cancellation returns HTTP 500 #202969
Replies: 3 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. ⭐ |
|
yo i poked at your repo Tommaso20BW/Notizie_JR — you're right that this isn't a normal "concurrency group is blocked" situation. what i see from outside:
that's a known-ish class of Actions bug: run gets into a weird state in their backend, UI can't cancel it, API 500s, and it just sits there forever while healthy new runs keep going. exact cleanup command (try this first)from your machine, authenticated as the repo owner: gh run delete 30157630153 -R Tommaso20BW/Notizie_JRsame thing via raw API if you prefer: gh api -X DELETE repos/Tommaso20BW/Notizie_JR/actions/runs/30157630153that should wipe the zombie run from the Actions list. if you already got 403 on delete / 500 on cancel, the record is corrupted on github's side and the CLI can't finish the job — then you need Support to purge it server-side. what you can actually do (free plan)
what it is not
tl;dr — try |

Uh oh!
There was an error while loading. Please reload this page.
🏷️ Discussion Type
Bug
💬 Feature/Topic Area
Other
Discussion Details
A GitHub Actions workflow run in my public repository is permanently stuck in the
queuedstate.Repository:
Tommaso20BW/Notizie_JRWorkflow:
Notizie WebRun ID:
30157630153Run URL: https://github.com/Tommaso20BW/Notizie_JR/actions/runs/30157630153
Queued since:
2026-07-25T12:14:05ZEvery cancellation method fails:
Failed to cancel workflow.Failed to cancel workflow runFailed to cancel workflow runCould not delete the workflow runNewer runs of the same workflow have completed successfully, so the workflow and its concurrency group are not blocked. This appears to be an orphaned workflow-run record.
Is there any way for GitHub staff to cancel or remove this run server-side, or another workaround available to GitHub Free users?
All reactions