Deployments ({{ $deployments_count }})

@if (count($deployments) === 0) Load Deployments @endif
@if ($show_next) Show More @endif @foreach ($deployments as $deployment) data_get($deployment, 'status') === 'queued' || data_get($deployment, 'status') === 'cancelled by system', 'border-warning hover:bg-warning hover:text-black' => data_get($deployment, 'status') === 'in_progress', 'border-error hover:bg-error' => data_get($deployment, 'status') === 'error', 'border-success hover:bg-success' => data_get($deployment, 'status') === 'finished', ]) @if (data_get($deployment, 'status') !== 'cancelled by system' && data_get($deployment, 'status') !== 'queued') href="{{ $current_url . '/' . data_get($deployment, 'deployment_uuid') }}" @endif class="hover:no-underline">
{{ $deployment->id }} > {{ $deployment->deployment_uuid }} > {{ $deployment->status }}
@if (data_get($deployment, 'pull_request_id'))
Pull Request #{{ data_get($deployment, 'pull_request_id') }} @if (data_get($deployment, 'is_webhook')) (Webhook) @endif
@elseif (data_get($deployment, 'is_webhook'))
Webhook (sha @if (data_get($deployment, 'commit')) {{ data_get($deployment, 'commit') }}) @else HEAD) @endif
@endif
Finished 0s in 0s
@endforeach