feat(github): add GitHub App connection testing

This commit is contained in:
Andras Bacsai
2026-07-21 21:54:15 +02:00
parent b2fed043c5
commit aeeb2665cd
5 changed files with 237 additions and 6 deletions
+3 -5
View File
@@ -25,12 +25,10 @@
<x-git-icon class="inline-block w-4 h-4 mr-1" git="App\Models\GithubApp" />
{{ $source->name }}
</div>
@if (is_null($source->app_id))
<span class="box-description text-warning">Setup required</span>
@if ($source->isConnected())
<span class="box-description text-success">Connected</span>
@else
@if ($source->organization)
<span class="box-description">Organization: {{ $source->organization }}</span>
@endif
<span class="box-description text-warning">Setup required</span>
@endif
</div>
</a>