Recent Executions

Refresh
@if ($this->recentExecutions->isEmpty())
No runner executions yet. When a workflow job matches this server's labels, it will appear here.
@else
@foreach ($this->recentExecutions as $execution) @endforeach
Runner Workflow Repository Status Duration Started
{{ $execution->runner_name }} {{ $execution->workflow_name ?? '-' }} {{ $execution->repository_full_name ?? '-' }} @switch($execution->status->value) @case('queued') Queued @break @case('provisioning') Provisioning @break @case('running') Running @break @case('completed') Completed @break @case('failed') Failed @break @case('timed_out') Timed Out @break @case('cleaning') Cleaning @break @endswitch {{ $execution->duration() ?? '-' }} {{ $execution->started_at?->diffForHumans() ?? $execution->created_at->diffForHumans() }}
@if ($execution->workflowJobUrl()) Open @endif @if ($execution->isActive()) Cancel @endif
@endif