Skip to content
Discussion options

You must be logged in to vote

Hi @Ace-Radom, there! 👋 totally get why this is confusing—especially since you're not hitting your GH Actions minutes limit and Actions are enabled.

here’s a few things to check that might explain why your workflow is queued forever:


1. runs-on is valid & available

You're using:

runs-on: ubuntu-20.04

While this should work, GitHub often recommends ubuntu-latest for better runner availability. Try updating it:

runs-on: ubuntu-latest

Incorrect or rare runner labels can block your jobs silently :contentReference[oaicite:1]{index=1}.


2. 🚦 Runner capacity & availability

  • You’re using GitHub-hosted runners—if demand is high, new jobs may sit in queue.
    This is especially common during peak ho…

Replies: 1 comment 3 replies

Comment options

You must be logged in to vote
3 replies
@Ace-Radom
Comment options

@karadhub
Comment options

@zhuolisam
Comment options

Answer selected by Ace-Radom
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
other General topics and discussions that don't fit into other categories, but are related to GitHub Question Ask and answer questions about GitHub features and usage
3 participants