Replies: 5 comments
-
|
I spent multiple hours trying to research and most people just told me to use the RESt API which doesn't work... |
Beta Was this translation helpful? Give feedback.
-
|
@nf12pro This is not a local network or Wi-Fi issue. GitHub Actions runners are fully server-side, and “queued” jobs mean no runner is being assigned, not that your connection is slow.
|
Beta Was this translation helpful? Give feedback.
-
|
Check GitHub Status: On occasion, the Actions queues experience delays because of issues with the GitHub service. Go to https://www.githubstatus.com/ and check for “Actions” incidents. |
Beta Was this translation helpful? Give feedback.
-
|
This is a known GitHub Actions runner-side issue, not your internet or repo. On GitHub, workflows can get stuck in “queued” when: GitHub-hosted runners are temporarily unavailable or overloaded A runner reservation fails internally A previous workflow deadlocks the queue That’s why Cancel, REST API cancel, and delete attempts fail — the job never actually starts, so GitHub can’t release it. What you can do (effective fixes): Disable Actions temporarily Repo → Settings → Actions → Disable Wait 2–5 minutes Re-enable Actions Push a trivial commit Example: edit README → commit → push Check GitHub Actions status If runners are degraded, you must wait (nothing you can fix locally). Last resort The stuck jobs usually auto-clear within a few hours. They do not block future workflows permanently. What will not work: Cancelling via UI repeatedly REST API delete/cancel Faster internet Rerunning the same workflow without a new event Important: This is not a problem with your murder mystery website or workflow YAML. |
Beta Was this translation helpful? Give feedback.
-
|
🕒 Discussion Activity Reminder 🕒 This Discussion has been labeled as dormant by an automated system for having no activity in the last 60 days. Please consider one the following actions: 1️⃣ Close as Out of Date: If the topic is no longer relevant, close the Discussion as 2️⃣ Provide More Information: Share additional details or context — or let the community know if you've found a solution on your own. 3️⃣ Mark a Reply as Answer: If your question has been answered by a reply, mark the most helpful reply as the solution. Note: This dormant notification will only apply to Discussions with the Thank you for helping bring this Discussion to a resolution! 💬 |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Select Topic Area
Question
Feature Area
Issues
Body
My murder mistery website repository has 2 workflows/actions queued for more than an hour with high speed wifi. I have tried cancelling but it failes. I ran REST API manually to cancel it and failed, proceded to try to delete it from the REST API yet failed. These are the links to my repo: https://github.com/nf12pro/A-Murder-Mystery-In-a-Dark-Room. My 2 actions that are stuck on queued.
Guidelines
Beta Was this translation helpful? Give feedback.
All reactions