File tree 1 file changed +6
-0
lines changed
apps/desktop/src/components
1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change 12
12
import PrTemplateSection from ' ./PrTemplateSection.svelte' ;
13
13
import ScrollableContainer from ' $components/ConfigurableScrollableContainer.svelte' ;
14
14
import { AIService } from ' $lib/ai/service' ;
15
+ import { PostHogWrapper } from ' $lib/analytics/posthog' ;
15
16
import { writeClipboard } from ' $lib/backend/clipboard' ;
16
17
import { BaseBranch } from ' $lib/baseBranch/baseBranch' ;
17
18
import { BranchStack } from ' $lib/branches/branch' ;
79
80
const stackPublishingService = getContext (StackPublishingService );
80
81
const butRequestDetailsService = getContext (ButRequestDetailsService );
81
82
const brToPrService = getContext (BrToPrService );
83
+ const posthog = getContext (PostHogWrapper );
82
84
83
85
const canPublish = stackPublishingService .canPublish ;
84
86
193
195
// We want to always create the BR, and vice versa.
194
196
if ((canPublishBR && $createButlerRequest ) || ! canPublishPR ) {
195
197
reviewId = await stackPublishingService .upsertStack (stack .id , currentSeries .name );
198
+ posthog .capture (' Butler Review Created' );
196
199
butRequestDetailsService .setDetails (reviewId , prTitle .value , prBody .value );
197
200
}
198
201
if ((canPublishPR && $createPullRequest ) || ! canPublishBR ) {
202
205
draft: $createDraft ,
203
206
upstreamBranchName
204
207
});
208
+ posthog .capture (' Pull Request Created' );
205
209
prNumber = pr ?.number ;
206
210
}
207
211
300
304
});
301
305
isLoading = false ;
302
306
307
+ posthog .capture (' Pull Request Created' );
308
+
303
309
close ();
304
310
}
305
311
You can’t perform that action at this time.
0 commit comments