We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9acab85 commit a61d25dCopy full SHA for a61d25d
3 files changed
resources/views/md/comment.blade.php
@@ -1,5 +1,4 @@
1
@include('github-project::md.shared.content', compact('payload'))
2
-
3
@include('github-project::md.shared.author', [
4
'name' => $payload['sender']['login'] ?? 'Unknown',
5
'html_url' => $payload['sender']['html_url'] ?? '#'
resources/views/md/shared/author.blade.php
@@ -1 +1,2 @@
+`
Made changes by: [{{ $name }}]({{ $html_url }})
src/Jobs/ProcessAggregatedEvents.php
@@ -43,7 +43,7 @@ public function handle(): void
43
Cache::forget($commentAggregationCacheKey);
44
Cache::forget($commentAggregationCacheKey.'_author');
45
46
- $message .= '\n\n'.view(
+ $message .= view(
47
'github-project::md.shared.author',
48
['name' => $author['name'], 'html_url' => $author['html_url']]
49
)->render();
0 commit comments