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 f9e8a38 commit 96af9f0Copy full SHA for 96af9f0
1 file changed
src/Services/WebhookService.php
@@ -18,6 +18,7 @@ public function __construct(Client $client)
18
public function eventRequestApproved(Request $request): bool
19
{
20
$event = $request->server->get('HTTP_X_GITHUB_EVENT');
21
+
22
return $this->eventApproved((string) $event);
23
}
24
@@ -45,6 +46,7 @@ protected function hasValidNodeAndFieldData(array $payload): bool
45
46
protected function hasFieldTemplate(array $payload): bool
47
48
$fieldType = $payload['changes']['field_value']['field_type'] ?? '';
49
50
return view()->exists('github-project::md.fields.'.$fieldType);
51
52
0 commit comments