fix(ci): restore dev validate after virtualization merge

This commit is contained in:
777genius 2026-04-20 11:06:40 +03:00
parent 6929ab2a34
commit 5f05ab0919
2 changed files with 5 additions and 2 deletions

View file

@ -3,7 +3,9 @@
reviews: reviews:
auto_review: auto_review:
enabled: true enabled: true
drafts: false drafts: true
base_branches:
- '.*'
auto_title_instructions: | auto_title_instructions: |
Follow Conventional Commits format: '<type>: <description>' Follow Conventional Commits format: '<type>: <description>'
Types: feat, fix, docs, style, refactor, perf, test, build, ci, chore, revert Types: feat, fix, docs, style, refactor, perf, test, build, ci, chore, revert

View file

@ -38,6 +38,7 @@ import { getMemberColorByName } from '@shared/constants/memberColors';
import { DEFAULT_TOOL_APPROVAL_SETTINGS } from '@shared/types/team'; import { DEFAULT_TOOL_APPROVAL_SETTINGS } from '@shared/types/team';
import { resolveLanguageName } from '@shared/utils/agentLanguage'; import { resolveLanguageName } from '@shared/utils/agentLanguage';
import { getAnthropicDefaultTeamModel } from '@shared/utils/anthropicModelDefaults'; import { getAnthropicDefaultTeamModel } from '@shared/utils/anthropicModelDefaults';
import { getErrorMessage } from '@shared/utils/errorHandling';
import { buildTeamMemberColorMap } from '@shared/utils/teamMemberColors'; import { buildTeamMemberColorMap } from '@shared/utils/teamMemberColors';
import { parseCliArgs } from '@shared/utils/cliArgsParser'; import { parseCliArgs } from '@shared/utils/cliArgsParser';
import { deriveContextMetrics, inferContextWindowTokens } from '@shared/utils/contextMetrics'; import { deriveContextMetrics, inferContextWindowTokens } from '@shared/utils/contextMetrics';
@ -1130,7 +1131,7 @@ async function waitForTmuxPanesToExit(
} }
if (lastError) { if (lastError) {
throw lastError; throw (lastError instanceof Error ? lastError : new Error(getErrorMessage(lastError)));
} }
return remainingPaneIds; return remainingPaneIds;
} }