@include 'layout/head.html' @css '/css/ci.css' @include 'layout/header.html'
@include 'layout/repo_menu.html'

CI / CD

@if ci_service_error
CI service unavailable. The CI service is not running or cannot be reached.
@end @if ci_runs.len == 0 @if !ci_service_error
@if has_ci_file

No CI runs yet. Push a commit to trigger a CI run.

@else

No CI runs yet. Add a .gitly-ci.yml file to your repository to enable CI.

@if repo.user_id == ctx.user.id Create .gitly-ci.yml @end @end
@end @else
Status Branch Commit Time
@for ci_run in ci_runs @{ci_run.status.icon()} @{ci_run.status.str()} @ci_run.branch @ci_run.commit_hash @{ci_run.relative_time()} @end
@end
@include 'layout/footer.html'