debian-mirror-gitlab/app/views/projects/pipelines/new.html.haml

21 lines
875 B
Text
Raw Normal View History

2023-07-09 08:55:56 +05:30
- breadcrumb_title s_('Pipeline|Run pipeline')
- add_to_breadcrumbs s_('Pipeline|Pipelines'), project_pipelines_path(@project)
2021-04-29 21:17:54 +05:30
- page_title s_('Pipeline|Run pipeline')
2016-06-02 11:05:42 +05:30
2022-07-23 23:45:48 +05:30
%h1.page-title.gl-font-size-h-display
2021-04-29 21:17:54 +05:30
= s_('Pipeline|Run pipeline')
2016-06-02 11:05:42 +05:30
%hr
2021-06-08 01:23:25 +05:30
#js-new-pipeline{ data: { project_id: @project.id,
pipelines_path: project_pipelines_path(@project),
default_branch: @project.default_branch,
2023-05-27 22:25:52 +05:30
pipelines_editor_path: project_ci_pipeline_editor_path(@project),
can_view_pipeline_editor: can_view_pipeline_editor?(@project),
2021-06-08 01:23:25 +05:30
ref_param: params[:ref] || @project.default_branch,
var_param: params[:var].to_json,
file_param: params[:file_var].to_json,
2022-11-25 23:54:43 +05:30
project_path: @project.full_path,
2021-06-08 01:23:25 +05:30
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 } }