Replies: 2 comments 1 reply
|
💬 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. ⭐ |
|
This is a known, recurring class of Actions bug — a run gets orphaned in the backend (stuck in One thing that's worked for people in that exact situation — try deleting the run directly via the GitHub CLI instead of cancelling it: gh run delete 32218904471 -R Dengda98/PyGRTThat's confirmed to clear an orphaned queued run in at least one closely matching thread (#202969), even when both cancel and force-cancel had already failed the same way you're seeing. If the delete also fails (403, or another error) — that confirms the record is genuinely corrupted server-side, and it needs GitHub staff to purge it directly rather than anything you can do client-side. At that point, GitHub Support is the right path, with the run URL/ID and a note that both UI cancel and Worth a quick check too: githubstatus.com for anything currently affecting Actions — a couple of the linked threads trace back to a recent Actions Runner Controller incident, so if there's an active or very recent incident, it's worth mentioning that alongside your report. In the meantime, if this stuck run is blocking new workflow runs from starting (rather than just being annoying to look at), a fresh push should still trigger a new run independently — the stuck one shouldn't block unrelated new runs unless you have a |
Uh oh!
There was an error while loading. Please reload this page.
🏷️ Discussion Type
Bug
💬 Feature/Topic Area
ARC (Actions Runner Controller)
Discussion Details
Hello GitHub Actions team,
I encountered an issue where a GitHub Actions workflow run is stuck and cannot be canceled.
Repository: https://github.com/Dengda98/PyGRT
Workflow run: https://github.com/Dengda98/PyGRT/actions/runs/32218904471
Run ID: 32218904471
Status: Queued
Problem: Every attempt to cancel it fails with: "Failed to cancel workflow."
Could someone help investigate this stuck workflow run or reset its state?
Thank you.
All reactions