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 7b6624c commit 424de43Copy full SHA for 424de43
src/Services/WebhookService.php
@@ -95,8 +95,8 @@ protected function isStatusCommentEnabled(array $payload): bool
95
{
96
$fieldType = $payload['changes']['field_value']['field_type'] ?? '';
97
98
- if ((string) $fieldType !== 'Status'
99
- && !config('github-project.enable_status_comment')
+ if ((string) $fieldType === 'Status'
+ && !z('github-project.enable_status_comment')
100
) {
101
return false;
102
}
0 commit comments