docs: state that Actions are advisory and deploys are not gated on them - #89
Merged
Merged
Conversation
Actions are not paid for on these repos, so jobs stop running whenever the spending limit is hit. That has repeatedly looked like a blocked release when nothing was actually blocked. Verified while syncing downstreams: - Vercel deploys through its own Git integration, independent of Actions. shipkit-www shipped two production deployments on 2026-09-16 while every one of its Actions jobs was failing on billing. - No repo requires status checks. Branch protection needs GitHub Pro on a private repo, so the API returns 403 and there is nothing to satisfy. A red check cannot block a merge; only a person can. - ignoreCommand never skips production. vercel-ignore-step.sh exits 1 for VERCEL_ENV=production, so a live site cannot be left stale. Also records how to recognise a job that never ran: billing-blocked jobs fail in under ten seconds and carry the "recent account payments have failed" annotation. That is not a code failure and carries no signal. What gates a release is local verify plus the Vercel build. [skip ci]
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
lacymorrow
added a commit
that referenced
this pull request
Sep 19, 2026
The note added in #89 said billing-blocked jobs fail in under about ten seconds. That is not dependable. A shipkit-www "Lint (biome + eslint + prettier)" job reported 38s and looked exactly like a real lint failure, but its annotation was the payments message and the job had never run. Reading the check-run annotation is the only reliable test, so say that and drop the duration heuristic. [skip ci]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Actions are not paid for on these repos, so jobs stop running whenever the spending limit is hit. That has repeatedly looked like a blocked release when nothing was actually blocked, including for me while syncing downstreams this week.
What I verified
gh api .../branches/main/protectionreturns 403, so there is nothing to satisfyscripts/vercel-ignore-step.shexits 1 forVERCEL_ENV=production; only preview builds skip, and only on[skip ci]So a red X from Actions cannot block a merge or a deploy. Only a person can, by waiting on it.
Why write it down
A billing-blocked job fails in under ten seconds with "The job was not started because recent account payments have failed or your spending limit needs to be increased". It looks identical to a real failure in the PR checks list. The doc records how to tell them apart (
gh api repos/<owner>/<repo>/check-runs/<id>/annotations) and states plainly that such a job carries no signal.What gates a release is local
verifyplus the Vercel build. Actions being green is a bonus, not a requirement.Docs only, no code change. Commit carries
[skip ci].