Merge pull request #78 from 777genius/fix/dev-ci-after-pr75
fix(ci): restore dev validate after virtualization merge
This commit is contained in:
commit
0f7c1d7982
2 changed files with 5 additions and 2 deletions
|
|
@ -3,7 +3,9 @@
|
|||
reviews:
|
||||
auto_review:
|
||||
enabled: true
|
||||
drafts: false
|
||||
drafts: true
|
||||
base_branches:
|
||||
- '.*'
|
||||
auto_title_instructions: |
|
||||
Follow Conventional Commits format: '<type>: <description>'
|
||||
Types: feat, fix, docs, style, refactor, perf, test, build, ci, chore, revert
|
||||
|
|
|
|||
|
|
@ -38,6 +38,7 @@ import { getMemberColorByName } from '@shared/constants/memberColors';
|
|||
import { DEFAULT_TOOL_APPROVAL_SETTINGS } from '@shared/types/team';
|
||||
import { resolveLanguageName } from '@shared/utils/agentLanguage';
|
||||
import { getAnthropicDefaultTeamModel } from '@shared/utils/anthropicModelDefaults';
|
||||
import { getErrorMessage } from '@shared/utils/errorHandling';
|
||||
import { buildTeamMemberColorMap } from '@shared/utils/teamMemberColors';
|
||||
import { parseCliArgs } from '@shared/utils/cliArgsParser';
|
||||
import { deriveContextMetrics, inferContextWindowTokens } from '@shared/utils/contextMetrics';
|
||||
|
|
@ -1130,7 +1131,7 @@ async function waitForTmuxPanesToExit(
|
|||
}
|
||||
|
||||
if (lastError) {
|
||||
throw lastError;
|
||||
throw lastError instanceof Error ? lastError : new Error(getErrorMessage(lastError));
|
||||
}
|
||||
return remainingPaneIds;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue