BREAKING: Vercel MAJOR π¨ Workflow runs stuck as pending [x4ngbgzymq4h]
Vercel experiencing significant disruption with workflow runs stuck in pending state. Immediate workarounds for indie hackers inside.
BREAKING: Vercel Workflow Runs Stuck as Pending π¨
Status: Identified | Severity: MAJOR | Updated: Now
---
What's Down & Who's Affected
Vercel's GitHub Actions integration and workflow execution pipeline is experiencing a major bottleneck. Workflow runsβparticularly those triggered by deployments, pull requests, and scheduled jobsβare queuing indefinitely in a "pending" state without progressing to execution.
Who this impacts:
What's NOT affected:
vercel deploy CLI---
Immediate Workarounds (Do This Now)
1. Use Vercel CLI for Deployments
Bypass the GitHub integration entirely: ```bash npm i -g vercel vercel deploy --prod ``` This works independently of workflow infrastructure.2. Move CI/CD to External Services
Don't waitβimplement this immediately:.github/workflows/deploy.yml that calls Vercel API directly3. Temporarily Disable Auto-Deployments
In Vercel dashboard β Project Settings β Git:4. Use Vercel REST API
For programmatic deployments: ```bash curl -X POST https://api.vercel.com/v13/deployments \ -H "Authorization: Bearer $VERCEL_TOKEN" \ -d '{"name":"project-name"}' ```---
How to Check If You're Affected
1. Vercel Dashboard: Check Project β Deployments. Do you see pending/queued items not advancing for 15+ minutes? 2. GitHub Checks: In your PR, are deployment status checks showing "Waiting" indefinitely? 3. Vercel Status Page: Visit [status.vercel.com](https://status.vercel.com) for official updates 4. Quick test: Push a test commit. Does it deploy within 2 minutes? If not, you're hitting this issue.
---
Alternative Tools to Consider (Short-term)
*Note:* Don't migrate entirely without testing. Use these as fallbacks while Vercel recovers.
---
Monitor Recovery
Official channels:
What to watch for:
Recovery ETA: Vercel typically resolves identified infrastructure issues within 30-180 minutes. This one is marked "identified," which is positive.
---
Bottom Line
You have working alternatives right now. Don't panic. Use the Vercel CLI for critical deployments today, implement external CI/CD as a buffer, and monitor recovery. This is a workflow infrastructure issueβyour apps are still live.
We'll update as Vercel confirms resolution.