diff --git a/resources/views/livewire/project/new/github-private-repository.blade.php b/resources/views/livewire/project/new/github-private-repository.blade.php index c1e26dcb5..d6a11de92 100644 --- a/resources/views/livewire/project/new/github-private-repository.blade.php +++ b/resources/views/livewire/project/new/github-private-repository.blade.php @@ -1,8 +1,14 @@
-

Create a new Application

+
+

Create a new Application

+ + + Add New GitHub App + + +
Deploy any public or private git repositories through a GitHub App.
@if ($github_apps->count() > 0) -
+
@if ($current_step === 'github_apps')
  • Select a GitHub App
  • @@ -12,11 +18,13 @@ @foreach ($github_apps as $ghapp) @if ($selected_github_app_id == $ghapp->id)
    + wire:click.prevent="loadRepositories({{ $ghapp->id }})" + wire:key="{{ $ghapp->id }}">
    {{ $ghapp->name }}
    +
    {{ $ghapp->http_url }}
    @@ -25,12 +33,14 @@
    -
    +
    - {{ $ghapp->name }} + {{ data_get($ghapp, 'name') }}
    +
    + {{ data_get($ghapp, 'html_url') }}
    + class="">Loading...
    @endif @@ -65,7 +75,6 @@
    No repositories found. Check your GitHub App configuration.
    @endif @if ($branches->count() > 0) -

    Details