🐛 fix: fix skill search not found (#12432)

* fix skill issue

* fix skills

* fix skills search query
This commit is contained in:
Arvin Xu
2026-02-23 00:28:10 +08:00
committed by GitHub
parent bdc901d1dc
commit ddce51eaba
10 changed files with 239 additions and 26 deletions

View File

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