🔨 chore: update vercel build ignore mode (#6189)

This commit is contained in:
Arvin Xu
2025-02-16 01:16:40 +08:00
committed by GitHub
parent 35fa3ee5c4
commit 57bfa6aa2a

View File

@@ -5,7 +5,7 @@ const branchName = process.env.VERCEL_GIT_COMMIT_REF || '';
function shouldProceedBuild() {
// 如果是 lighthouse 分支或以 testgru 开头的分支,取消构建
if (branchName === 'lighthouse' || branchName.startsWith('testgru')) {
if (branchName === 'lighthouse' || branchName.startsWith('gru/')) {
return false;
}