mirror of
https://github.com/lobehub/lobehub.git
synced 2026-03-26 13:19:34 +07:00
🐛 fix: fix skill search not found (#12432)
* fix skill issue * fix skills * fix skills search query
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user