File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -37,15 +37,18 @@ public function handle(): void
3737
3838 if (empty ($ eventMessages )) {
3939 Cache::forget ($ commentAggregationCacheKey .'_author ' );
40+
4041 return ;
4142 }
4243
4344 $ message = $ this ->aggregateMessages ($ eventMessages );
4445 Cache::forget ($ commentAggregationCacheKey );
4546 $ author = Cache::pull ($ commentAggregationCacheKey .'_author ' , '' );
4647
47- $ message .= '\n\n ' .view ('github-project::md.shared.author ' ,
48- ['name ' => $ author ['name ' ], 'html_url ' => $ author ['html_url ' ]])->render ();
48+ $ message .= '\n\n ' .view (
49+ 'github-project::md.shared.author ' ,
50+ ['name ' => $ author ['name ' ], 'html_url ' => $ author ['html_url ' ]]
51+ )->render ();
4952
5053 $ githubService = new GithubService ;
5154 $ githubService ->commentOnNode ($ this ->nodeId , $ message );
Original file line number Diff line number Diff line change @@ -51,6 +51,7 @@ public function handleComment(array $payload): void
5151
5252 if (config ('github-project.is_queue_enabled ' )) {
5353 ProcessWebhookEvent::dispatch ($ payload );
54+
5455 return ;
5556 }
5657
You can’t perform that action at this time.
0 commit comments