gitlab-org--gitlab-foss/app/views/projects/pipelines/new.html.haml

26 lines
1.3 KiB
Text
Raw Normal View History

2017-07-12 04:35:53 -04:00
- breadcrumb_title "Pipelines"
2018-04-16 06:22:34 -04:00
- page_title = s_("Pipeline|Run Pipeline")
2016-04-12 10:16:39 -04:00
%h3.page-title
2018-04-16 06:22:34 -04:00
= s_("Pipeline|Run Pipeline")
2016-04-12 10:16:39 -04:00
%hr
= form_for @pipeline, as: :pipeline, url: project_pipelines_path(@project), html: { id: "new-pipeline-form", class: "js-new-pipeline-form js-requires-input" } do |f|
= form_errors(@pipeline)
.form-group.row
= f.label :ref, s_('Pipeline|Run on'), class: 'col-form-label col-sm-2'
2016-04-12 10:16:39 -04:00
.col-sm-10
= hidden_field_tag 'pipeline[ref]', params[:ref] || @project.default_branch
= dropdown_tag(params[:ref] || @project.default_branch,
options: { toggle_class: 'js-branch-select wide git-revision-dropdown-toggle',
2018-04-16 06:22:34 -04:00
filter: true, dropdown_class: "dropdown-menu-selectable git-revision-dropdown", placeholder: s_("Pipeline|Search branches"),
data: { selected: params[:ref] || @project.default_branch, field_name: 'pipeline[ref]' } })
.form-text.text-muted
2018-04-16 06:22:34 -04:00
= s_("Pipeline|Existing branch name, tag")
2016-04-12 10:16:39 -04:00
.form-actions
2018-04-16 06:22:34 -04:00
= f.submit s_('Pipeline|Run pipeline'), class: 'btn btn-success', tabindex: 3
= link_to 'Cancel', project_pipelines_path(@project), class: 'btn btn-default pull-right'
2016-04-12 10:16:39 -04:00
-# haml-lint:disable InlineJavaScript
%script#availableRefs{ type: "application/json" }= @project.repository.ref_names.to_json.html_safe