Merge pull request #78 from 777genius/fix/dev-ci-after-pr75

fix(ci): restore dev validate after virtualization merge
This commit is contained in:
Илия 2026-04-20 11:10:11 +03:00 committed by GitHub
commit 0f7c1d7982
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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;
} }