2016-06-16 23:09:34 +05:30
|
|
|
- @no_container = true
|
2016-06-02 11:05:42 +05:30
|
|
|
- page_title "Pipelines"
|
2016-06-16 23:09:34 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
%div{ 'class' => container_class }
|
|
|
|
#pipelines-list-vue{ data: { endpoint: project_pipelines_path(@project, format: :json),
|
|
|
|
"help-page-path" => help_page_path('ci/quick_start/README'),
|
|
|
|
"help-auto-devops-path" => help_page_path('topics/autodevops/index.md'),
|
|
|
|
"empty-state-svg-path" => image_path('illustrations/pipelines_empty.svg'),
|
|
|
|
"error-state-svg-path" => image_path('illustrations/pipelines_failed.svg'),
|
|
|
|
"new-pipeline-path" => new_project_pipeline_path(@project),
|
|
|
|
"can-create-pipeline" => can?(current_user, :create_pipeline, @project).to_s,
|
|
|
|
"has-ci" => @repository.gitlab_ci_yml,
|
|
|
|
"ci-lint-path" => ci_lint_path,
|
|
|
|
"reset-cache-path" => reset_cache_project_settings_ci_cd_path(@project) } }
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
= page_specific_javascript_bundle_tag('common_vue')
|
|
|
|
= page_specific_javascript_bundle_tag('pipelines')
|