Skip to content

Commit f519d3a

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents 50bceee + 7c60cea commit f519d3a

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/Actions/WebhookAction.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ public function __invoke(): JsonResponse
4848
$fromValue = $fieldData['from']['name'] ?? 'Unknown';
4949
$toValue = $fieldData['to']['name'] ?? 'Unknown';
5050

51-
$message = view('github-project::md.comment',
51+
$message = view(
52+
'github-project::md.comment',
5253
compact('editor', 'fieldName', 'fromValue', 'toValue')
5354
)->render();
5455

src/Services/WebhookService.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ public function commentOnNode(string $contentNodeId, string $message): array
4444
$variables = [
4545
'input' => [
4646
'subjectId' => $contentNodeId,
47-
'body' => $message
48-
]
47+
'body' => $message,
48+
],
4949
];
5050

5151
return $this->client->graphql()->execute($query, $variables);

0 commit comments

Comments
 (0)