git404hub

what is d-vercel fr?

spectra010s/d-vercel — explained in plain English

Analysis updated 2026-05-18

0TypeScriptAudience · ops devopsComplexity · 3/5Setup · moderate

tl;dr

A GitHub Action that deploys apps to Vercel from your own CI pipeline, with monorepo support and auto updating pull request comments.

vibe map

mindmap
  root((d-vercel))
    What it does
      Deploys to Vercel
      Wraps Vercel CLI
      Posts PR comments
      Outputs deploy URL
    Tech stack
      TypeScript
      GitHub Actions
      Vercel CLI
    Use cases
      Private repo deploys
      Monorepo deploys
      Custom CI gating
      Skip unrelated builds
    Audience
      Developers
      DevOps teams
    Setup
      Vercel token
      Org and project ID
      GitHub secrets

Code map

Detail Auto

An interactive map of this repo's files and how they connect — its source is parsed live in your browser. Click Visualize to build it.

filefunction / class

what do people make with this?

VIBE 1

Deploy a private or enterprise repository to Vercel when native Git integration is not allowed.

VIBE 2

Deploy only one package of a monorepo by pointing the action at its working directory.

VIBE 3

Skip a Vercel build automatically when a commit does not touch the relevant folder.

VIBE 4

Post an updating pull request comment with the live preview link and deployment status.

what's the stack?

TypeScriptGitHub ActionsVercel CLINode.js

how it stacks up fr

spectra010s/d-vercel0xradioac7iv/tempfs52191314/web-agent-proxy-sdk
Stars000
LanguageTypeScriptTypeScriptTypeScript
Setup difficultymoderatemoderatemoderate
Complexity3/53/54/5
Audienceops devopsdeveloperdeveloper

Figures from each repo's GitHub metadata at analysis time.

how do i run it?

Difficulty · moderate time til it works · 30min

Requires a Vercel token plus your organization and project IDs stored as GitHub Actions secrets.

The README does not state a license, so terms of use and redistribution are unclear.

in plain english

d-vercel is a GitHub Action that deploys frontend and full stack applications to Vercel directly from a GitHub Actions workflow. It wraps the Vercel command line tool so it can pull your project configuration, run the deployment, print out the resulting deployment URL, and optionally post an updating status comment on the pull request that triggered it. It is aimed at teams who cannot use Vercel's built in Git integration, for example because of organization security policies on a private or enterprise repository, or because they run a monorepo built with tools like Turborepo, Nx, or pnpm workspaces and need to control exactly which folder gets deployed. It also suits teams who want a custom pipeline, gating deployments behind other checks or running tests such as Cypress or Playwright before or after deploying. The action creates a single sticky comment on a pull request showing the deployment status, preview link, commit hash, and run logs, and updates that same comment on every new commit instead of adding a new one each time. It has native support for working inside a subfolder, which makes monorepo setups straightforward, and it can run a custom check before building so that unrelated changes do not waste build minutes on Vercel. To use it, you first create a Vercel token and find your organization and project IDs in your Vercel account, then store them as GitHub Actions secrets. From there you add a short YAML workflow file that calls the action with those secrets, and it handles pulling configuration and deploying as either a production or preview build. Inputs let you set the working directory, choose whether to fail the workflow on a deployment error, pick a specific Vercel CLI version, and customize the comment title. It outputs the deployment URL and a final status of success, failure, or ignored.

prompts (copy fr)

prompt 1
Write a GitHub Actions workflow that uses d-vercel to deploy my app to Vercel on every push to main.
prompt 2
How do I set up d-vercel to only deploy the apps/web folder in my monorepo?
prompt 3
Show me how to use the ignore-build-step input in d-vercel with turbo-ignore.
prompt 4
Explain what secrets I need to create in GitHub before using d-vercel.

Frequently asked questions

what is d-vercel fr?

A GitHub Action that deploys apps to Vercel from your own CI pipeline, with monorepo support and auto updating pull request comments.

What language is d-vercel written in?

Mainly TypeScript. The stack also includes TypeScript, GitHub Actions, Vercel CLI.

What license does d-vercel use?

The README does not state a license, so terms of use and redistribution are unclear.

How hard is d-vercel to set up?

Setup difficulty is rated moderate, with roughly 30min to a first successful run.

Who is d-vercel for?

Mainly ops devops.

peek the repo → explain another one

This repo across BitVibe Labs

double-check against the repo, no cap.