Skip to content

Commit

Permalink
fix: fix teamcity ci resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
agoldis committed Mar 8, 2024
1 parent 6e34530 commit 876267b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/cypress-cloud/lib/ciProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -743,11 +743,12 @@ export function getCommitDefaults(existingInfo: CiProviderData) {
existingInfo,
(
memo: { [memoKey: string]: string | GhaEventData | null },
value: string | GhaEventData,
value: string | GhaEventData | null,
key: string
) => {
return (memo[key] = _.defaultTo(
value || commitParamsObj[key as keyof CiProvider],
value ||
(commitParamsObj ? commitParamsObj[key as keyof CiProvider] : null),
null
));
}
Expand Down

0 comments on commit 876267b

Please sign in to comment.