From 0c25d31cd9f19400a834e4bd1898dddb96aebf05 Mon Sep 17 00:00:00 2001 From: oliverhuangcode Date: Wed, 8 Jul 2026 02:50:21 +1000 Subject: [PATCH] Disable Vercel git deployments + commit checks MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The app moved to Oracle/Dokploy, but the Vercel GitHub integration still runs a deployment check on every push (and Vercel is paused, so it just fails/noises up the PR). `github.enabled: false` stops Vercel from deploying on push; `github.silent: true` stops it commenting/posting commit statuses. Fully severing it is done in the Vercel dashboard (Settings → Git → Disconnect); this is the in-repo belt-and-suspenders. Co-Authored-By: Claude Opus 4.8 --- vercel.json | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 vercel.json diff --git a/vercel.json b/vercel.json new file mode 100644 index 0000000..c73478f --- /dev/null +++ b/vercel.json @@ -0,0 +1,6 @@ +{ + "github": { + "enabled": false, + "silent": true + } +}