Welcome to mirror list, hosted at ThFree Co, Russian Federation.

new.html.haml « pipelines « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ee51ee9b0e211bdbcd9344ef2908be5793c26acd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
- breadcrumb_title _('Pipelines')
- page_title s_('Pipeline|Run pipeline')

%h1.page-title.gl-font-size-h-display
  = s_('Pipeline|Run pipeline')
%hr

#js-new-pipeline{ data: { project_id: @project.id,
  pipelines_path: project_pipelines_path(@project),
  config_variables_path: config_variables_namespace_project_pipelines_path(@project.namespace, @project),
  default_branch: @project.default_branch,
  pipelines_editor_path: project_ci_pipeline_editor_path(@project),
  can_view_pipeline_editor: can_view_pipeline_editor?(@project),
  ref_param: params[:ref] || @project.default_branch,
  var_param: params[:var].to_json,
  file_param: params[:file_var].to_json,
  project_path: @project.full_path,
  project_refs_endpoint: refs_project_path(@project, sort: 'updated_desc'),
  settings_link: project_settings_ci_cd_path(@project),
  max_warnings: ::Gitlab::Ci::Warnings::MAX_LIMIT } }